diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 13:20:29 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 13:20:29 +0200 |
commit | 231b272f820445472f07f54796ceeb75c3d642c0 (patch) | |
tree | cf7b8d9724f7c362eaf858352c48925f6e6b5fa8 /src/c_defs.go | |
parent | In progress (diff) | |
download | go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.gz go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.bz2 go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.xz go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.zst go2work-231b272f820445472f07f54796ceeb75c3d642c0.zip |
Good progress
Diffstat (limited to 'src/c_defs.go')
-rw-r--r-- | src/c_defs.go | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/c_defs.go b/src/c_defs.go index b2c5474..41174b9 100644 --- a/src/c_defs.go +++ b/src/c_defs.go @@ -55,13 +55,24 @@ const ( SECS = 2 INTERVAL = 500 LOG_FORMAT = "bad time format" - DEF_FILES = "/usr/home/jozan/mu/progressive/progressive_black_metal/deathspell_omega/2010_paracletus/02_wings_of_predation.flac" DEF_MEDIA_PLAYER = "mpv" - DEF_PLAYER_OPTIONS = []string{"--no-video", "--loop"} DEF_RANDOM = true DEF_USE_FORTUNE = true ) +func DEF_FILES() []string { + return []string{ + "/usr/home/jozan/mu/progressive/progressive_black_metal/deathspell_omega/2010_paracletus/02_wings_of_predation.flac", + } +} + +func DEF_PLAYER_OPTIONS() []string { + return []string{ + "--no-video", + "--loop", + } +} + type options struct { files []string media_player string |