diff options
Diffstat (limited to 'user-scripts')
-rwxr-xr-x | user-scripts/nlaunch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/user-scripts/nlaunch b/user-scripts/nlaunch new file mode 100755 index 0000000..79540c8 --- /dev/null +++ b/user-scripts/nlaunch @@ -0,0 +1,17 @@ +#!/usr/bin/env sh + +# Description: Fuzzy find executables in $PATH and launch an application +# stdin, stdout, stderr are suppressed so CLI utilities exit silently +# +# Shell: POSIX compliant +# Author: Arun Prakash Jana + +IFS=':' + +get_selection() { + ls -H $PATH | sort | fzy +} + +if selection=$( get_selection ); then + "$selection" 2>&1 >/dev/null & +fi |