aboutsummaryrefslogtreecommitdiffstats
path: root/xbindkeys/.config/shepherd/init.d/xbindkeys.scm
blob: bd7dfc1ed315d2e11088f301fc45b19b833f4568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(define xbindkeys
  (make <service>
    #:provides '(xbindkeys)
    #:docstring "Run `xbindkeys'"
    #:start (make-forkexec-constructor
             '("xbindkeys" "--nodaemon")
             #:log-file (string-append (getenv "HOME") "/.logs/xbindkeys.log"))
    #:stop (make-kill-destructor)))

(register-services xbindkeys)

(start xbindkeys)