From 798b19788ee64abc5c61450a8ef680f9db623458 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 20 Apr 2022 16:39:43 -0700 Subject: [PATCH] =?UTF-8?q?Use=20xbindkeys=20=E2=80=98-fg=E2=80=99=20inste?= =?UTF-8?q?ad=20of=20=E2=80=98--file-guile=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Even though the output of the ‘--help’ command promises that ‘--file-guile’ is the same as ‘-fg’ it appears that specifying ‘--file-guile’ doesn't work. It just pops up the help message. --- oni/home/services/xbindkeys.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oni/home/services/xbindkeys.scm b/oni/home/services/xbindkeys.scm index 984a163..efcf659 100644 --- a/oni/home/services/xbindkeys.scm +++ b/oni/home/services/xbindkeys.scm @@ -85,7 +85,7 @@ #~(make-forkexec-constructor (list #$(file-append (home-xbindkeys-configuration-package config) "/bin/xbindkeys") "--nodaemon" - "--file-guile" #$(home-xbindkeys-configuration-file config)) + "-fg" #$(home-xbindkeys-configuration-file config)) #:log-file (format #f "~a/.local/var/log/xbindkeys.log" (getenv "HOME")))) (stop #~(make-kill-destructor)))))