From 456f692b88323575aacab137a1a016df88f76638 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 1 May 2018 16:02:53 +0200 Subject: feat(functions): Add ivy-run-external-command Adds an ivy-based function akin to Helm's helm-run-external-command, but without all the things I don't need/want. --- init/functions.el | 36 ++++++++++++++++++++++++++++++++++++ init/nixos.el | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/init/functions.el b/init/functions.el index 726d40f257..ed1cf9d2a4 100644 --- a/init/functions.el +++ b/init/functions.el @@ -134,4 +134,40 @@ Including indent-buffer, which should not be called automatically on save." (buffer-name) require-final-newline)) +;; Helm includes a command to run external applications, which does +;; not seem to exist in ivy. This implementation uses some of the +;; logic from Helm to provide similar functionality using ivy. +(defun list-external-commands () + "Creates a list of all external commands available on $PATH + while filtering NixOS wrappers." + (cl-loop + for dir in (split-string (getenv "PATH") path-separator) + when (and (file-exists-p dir) (file-accessible-directory-p dir)) + for lsdir = (cl-loop for i in (directory-files dir t) + for bn = (file-name-nondirectory i) + when (and (not (s-contains? "-wrapped" i)) + (not (member bn completions)) + (not (file-directory-p i)) + (file-executable-p i)) + collect bn) + append lsdir into completions + finally return (sort completions 'string-lessp))) + +(defun ivy-run-external-command () + "Prompts the user with a list of all installed applications and + lets them select one to launch." + + (interactive) + (let ((external-commands-list (list-external-commands))) + (ivy-read "Command:" external-commands-list + :require-match t + :history 'external-commands-history + :action (lambda (cmd) + (message "Starting %s..." cmd) + (set-process-sentinel + (start-process-shell-command cmd nil cmd) + (lambda (process event) + (when (string= event "finished\n") + (message "%s process finished." process)))))))) + (provide 'functions) diff --git a/init/nixos.el b/init/nixos.el index 4a3e4435b6..eaf68dd982 100644 --- a/init/nixos.el +++ b/init/nixos.el @@ -65,7 +65,7 @@ (exwm-workspace-switch-create ,i)))) ;; Launch applications with completion (dmenu style!) - (exwm-input-set-key (kbd "s-d") #'helm-run-external-command) + (exwm-input-set-key (kbd "s-d") #'ivy-run-external-command) (exwm-input-set-key (kbd "s-p") #'ivy-pass) ;; Toggle between line-mode / char-mode -- cgit 1.4.1