diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-01 19:44:27 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-01 19:44:27 +0200 |
commit | b5b54feb70ba1dabc2ef425679f3c569b4e199fa (patch) | |
tree | e1f1605ab39455479d7d6c9c30e4e6f09badf729 /src/c_defs.go | |
parent | Random works fine (diff) | |
download | go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.gz go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.bz2 go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.xz go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.zst go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.zip |
In progress
Diffstat (limited to 'src/c_defs.go')
-rw-r--r-- | src/c_defs.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/c_defs.go b/src/c_defs.go index 36a20ba..d21fa8a 100644 --- a/src/c_defs.go +++ b/src/c_defs.go @@ -39,7 +39,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * go2work: src/c_defs.go - * Fri Apr 1 18:25:16 CEST 2022 + * Fri Apr 1 18:49:56 CEST 2022 * Joe * * Definitions. @@ -55,6 +55,7 @@ const ( SECS = 2 INTERVAL = 500 LOG_FORMAT = "bad time format" + OPTIONS_FILE = PROGNAME + "/" + PROGNAME + ".toml" DEF_MEDIA_PLAYER = "mpv" DEF_RANDOM = true DEF_USE_FORTUNE = true @@ -69,8 +70,8 @@ func DEF_FILES() []string { func DEF_PLAYER_OPTIONS() []string { return []string{ - "--loop", "--no-video", + "--loop", } } |