12345678910111213141516171819202122232425262728 |
- # _
- # ___ ___ ___ _ __ __ _ _ __ __| |_ _
- # / __|/ _ \/ _ \| '_ \ / _` | '__/ _` | | | |
- # \__ \ __/ (_) | |_) | (_| | | | (_| | |_| |
- # |___/\___|\___/| .__/ \__,_|_| \__,_|\__, |
- # |_| |___/
- # Configuration
- #
- # Basicly you can configure here:
- # - player inputs
- # - pathes to theme songs
- # - path to savedir (gamestate backups while game is running)
- # Note that this is a yamlfile (no tabs -.-)
-
- # path to music, set to null if you don't have the song
- music:
- startSong: path/to/theme_song.mp3
- questionSong: path/to/question_song.mp3
- closingSong: null
-
- # change to path, default is /tmp/seopardy/
- savedir: /tmp/seopardy/
-
- # player inputs. look in buttonreader.py for available types
- playerInput:
- # - Type: Fifo
- # Args:
- # - /tmp/seopardy_fifo
|