summaryrefslogtreecommitdiffstats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2020-10-13 11:05:33 -0400
committerAmin Bandali <bandali@gnu.org>2020-10-13 11:06:00 -0400
commit8e7b3f4871395cee04cd50b50a2d7013c73ed210 (patch)
tree4efc57a8096bc40a8ed484ff4414dae77a652cd3 /.emacs.d/lisp
parentaea662c560fb8fcd37e741adf67be9127f45f03a (diff)
downloadconfigs-8e7b3f4871395cee04cd50b50a2d7013c73ed210.tar.gz
configs-8e7b3f4871395cee04cd50b50a2d7013c73ed210.tar.xz
configs-8e7b3f4871395cee04cd50b50a2d7013c73ed210.zip
Small EXWM tweaks
* .emacs.d/lisp/bandali-exwm.el: bump `exwm-workspace-number' to 10, check for Iceweasel in addition to IceCat.
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/bandali-exwm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/bandali-exwm.el b/.emacs.d/lisp/bandali-exwm.el
index ff89112..f94757d 100644
--- a/.emacs.d/lisp/bandali-exwm.el
+++ b/.emacs.d/lisp/bandali-exwm.el
@@ -61,7 +61,7 @@ around if needed."
;; shorten 'C-c C-q' to 'C-q'
(define-key exwm-mode-map [?\C-q] #'exwm-input-send-next-key)
-(csetq exwm-workspace-number 4
+(csetq exwm-workspace-number 10
exwm-input-global-keys
`(([?\s-R] . exwm-reset)
([?\s-\\] . exwm-workspace-switch)
@@ -203,7 +203,7 @@ around if needed."
(lambda ()
(when exwm-class-name
(cond
- ((string= exwm-class-name "IceCat")
+ ((member exwm-class-name '("IceCat" "Iceweasel"))
(exwm-input-set-local-simulation-keys
`(,@exwm-input-simulation-keys
([?\C-\S-d] . [?\C-d]))))