.xbindkeysrc.scm
This commit is contained in:
parent
a09f13e0fd
commit
09c67a2b70
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
(define modkey 'mod4)
|
(define modkey 'mod4)
|
||||||
(define dmenu-cmd "dmenu")
|
(define dmenu-cmd "dmenu")
|
||||||
(define dmenu-args "-b -nb '#000000' -nf '#15abc3' -sb '#e0c625' -sf '#000000'")
|
(define dmenu-args "-b -nb '#000000' -nf '#15abc3' -sb '#e0c625' -sf '#000000'")
|
||||||
(define dzen-pipe nil)
|
(define dzen-pipe ())
|
||||||
|
|
||||||
;;; Macros
|
;;; Macros
|
||||||
(define-macro (cmd command)
|
(define-macro (cmd command)
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
(define (switch-tags)
|
(define (switch-tags)
|
||||||
"Switch to another tag"
|
"Switch to another tag"
|
||||||
(close-pipe dzen-pipe)
|
(close-pipe dzen-pipe)
|
||||||
(set! dzen-pipe nil)
|
(set! dzen-pipe ())
|
||||||
(let* ((tags (get-tags))
|
(let* ((tags (get-tags))
|
||||||
(tag (choose-tag "Switch to tag" tags)))
|
(tag (choose-tag "Switch to tag" tags)))
|
||||||
(if (string? tag)
|
(if (string? tag)
|
||||||
|
|
Loading…
Reference in a new issue