diff options
author | Thanos Apollo <[email protected]> | 2022-11-02 05:19:37 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-11-02 05:20:44 +0200 |
commit | bde0ac9c27df84840da6d9f2aa1feb9c080f5962 (patch) | |
tree | d297dd4e55f93d1077ab2e209bff4911b7fbcfce /.emacs.d/lisp | |
parent | 36d91cfd6d7fc72c706b10aba210696fd15c9426 (diff) |
Add rofi command
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-exwm.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-exwm.el b/.emacs.d/lisp/init-exwm.el index c0739cb..91c0bbf 100644 --- a/.emacs.d/lisp/init-exwm.el +++ b/.emacs.d/lisp/init-exwm.el @@ -3,6 +3,11 @@ ;;; Code: +(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 () |