diff options
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-exwm.el | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/.emacs.d/lisp/init-exwm.el b/.emacs.d/lisp/init-exwm.el index 91c0bbf..a96974c 100644 --- a/.emacs.d/lisp/init-exwm.el +++ b/.emacs.d/lisp/init-exwm.el @@ -3,11 +3,15 @@ ;;; Code: -(defun apollo/run_rofi () - (interactive) - (start-process-shell-command - "rofi" nil "rofi -show drun")) -(global-set-key (kbd "s-<tab>") 'apollo/run_rofi) +(use-package dmenu + :bind + ("s-d" . dmenu)) + +;; (defun apollo/run_rofi () +;; (interactive) +;; (start-process-shell-command +;; "rofi" nil "rofi -show drun")) +;; (global-set-key (kbd "s-<tab>") 'apollo/run_rofi) (defun apollo/exwm-update-class () @@ -15,7 +19,7 @@ (use-package exwm :config - (setq exwm-workspace-number 5) + (setq exwm-workspace-number 10) ;; When window "class" updates, use it to set the buffer name (add-hook 'exwm-update-class-hook #'apollo/exwm-update-class) @@ -42,7 +46,8 @@ ?\M-x ?\M-` ?\M-& - ?\M-: + ?\M-: + ?\s-d ?\C-\M-j ;; Buffer list ?\C-\ )) ;; Ctrl+Space |