diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-02T17·34+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-02T17·34+0100 |
commit | 691583ed5c8a722fec40c719599e9b2f458e7bdb (patch) | |
tree | b79a888f80951212b23676e12f451d408231236c /emacs/.emacs.d/wpc/window-manager.el | |
parent | d12b8b3dcb97aa6365eca061a260b74b41bfd452 (diff) |
Refactor opening X applications from Emacs
I borrowed heavily from Vincent's depot.
Diffstat (limited to 'emacs/.emacs.d/wpc/window-manager.el')
-rw-r--r-- | emacs/.emacs.d/wpc/window-manager.el | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/emacs/.emacs.d/wpc/window-manager.el b/emacs/.emacs.d/wpc/window-manager.el index 6558f1decf5a..3bbf749e8389 100644 --- a/emacs/.emacs.d/wpc/window-manager.el +++ b/emacs/.emacs.d/wpc/window-manager.el @@ -197,7 +197,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (:key "M-:" :fn eval-expression) - (:key "M-SPC" :fn window-manager/apps) + (:key "M-SPC" :fn ivy-helpers/run-external-command) (:key "M-x" :fn counsel-M-x) (:key "<M-tab>" :fn exwm/next-workspace) (:key "<M-S-iso-lefttab>" :fn exwm/prev-workspace) @@ -379,28 +379,6 @@ Ivy is used to capture the user's input." (alist/get (ivy-read "System: " (alist/keys name->cmd)) name->cmd)))))) -(cl-defun exwm/open (command &key - (process-name command) - (buffer-name command)) - "Open COMMAND, which should be an X11 window." - (start-process-shell-command process-name buffer-name command)) - -(cl-defun window-manager/execute-from-counsel (&key prompt list) - "Display a counsel menu of `LIST' with `PROMPT' and pipe the output through -`start-process-shell-command'." - (let ((x (ivy-read prompt list))) - (exwm/open - x - :buffer-name (string/format "*exwm/open*<%s>" x) - :process-name x))) - -(defun window-manager/apps () - "Open commonly used applications from counsel." - (interactive) - (window-manager/execute-from-counsel - :prompt "Application: " - :list window-manager/applications)) - (defun exwm/label->index (label workspaces) "Return the index of the workspace in WORKSPACES named LABEL." (let ((workspace (->> workspaces |