From 63ed18696c88c16c27622148baa7411fb3811d64 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 8 Sep 2019 09:45:47 -0400 Subject: emacs: update packages, use dmenu for s-SPC and move what was previously bound to s-SPC to S-s-SPC --- .emacs.d/init.el | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to '.emacs.d/init.el') diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9f5d07f..9b0c0c7 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -605,11 +605,12 @@ around if needed." (setq exwm-input-global-keys `(([?\s-R] . exwm-reset) ([?\s-\\] . exwm-workspace-switch) - ([?\s-\s] . (lambda (command) - (interactive - (list (read-shell-command "➜ "))) - (start-process-shell-command - command nil command))) + ([?\s-\s] . dmenu) + ([?\S-\s-\s] . (lambda (command) + (interactive + (list (read-shell-command "➜ "))) + (start-process-shell-command + command nil command))) ([s-return] . (lambda () (interactive) (start-process "" nil "urxvt"))) @@ -1936,9 +1937,7 @@ This function is intended for use with `ivy-ignore-buffers'." :config (minions-mode)) (use-package dmenu - :disabled :custom - (dmenu-history-size 0) (dmenu-prompt-string "run: ") (dmenu-save-file (b/var "dmenu-items"))) -- cgit v1.2.3-83-g751a