diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-04 19:16:35 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-04 19:16:35 +0200 |
commit | e6bae389d62f6bab0d427e89c2ba11b1c8714f26 (patch) | |
tree | af95288ba751ae1be792fcb37640e3854708d8b8 /share | |
parent | Should work now man (diff) | |
download | go2work-e6bae389d62f6bab0d427e89c2ba11b1c8714f26.tar.gz go2work-e6bae389d62f6bab0d427e89c2ba11b1c8714f26.tar.bz2 go2work-e6bae389d62f6bab0d427e89c2ba11b1c8714f26.tar.xz go2work-e6bae389d62f6bab0d427e89c2ba11b1c8714f26.tar.zst go2work-e6bae389d62f6bab0d427e89c2ba11b1c8714f26.zip |
Ok
Diffstat (limited to 'share')
-rw-r--r-- | share/go2work.toml.sample | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/share/go2work.toml.sample b/share/go2work.toml.sample new file mode 100644 index 0000000..46745d9 --- /dev/null +++ b/share/go2work.toml.sample @@ -0,0 +1,22 @@ +# Audio files to be played. There can be several, in that case +# only the first one is being played unless the 'random' option +# is set to 'true' +files = [ + '/usr/local/share/go2work/ring01.wav', + '/usr/local/share/go2work/ring02.wav', +] +# The program used to play the music files +# Default: 'mpv' +media_player = 'mpv' +# Command-line options to be passed to the program +# Default: [ '--no-video', '--loop' ] +player_options = [ + '--no-video', + '--loop', +] +# Choose a random audio file in the list +# Default: false +random = false +# Display a cool fortune message +# Default: true +fortune = true |