aboutsummaryrefslogtreecommitdiff
path: root/dmenu_run
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu_run')
-rwxr-xr-xdmenu_run15
1 files changed, 1 insertions, 14 deletions
diff --git a/dmenu_run b/dmenu_run
index 052e51b..834ede5 100755
--- a/dmenu_run
+++ b/dmenu_run
@@ -1,15 +1,2 @@
1#!/bin/sh 1#!/bin/sh
2cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"} 2dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
3if [ -d "$cachedir" ]; then
4 cache=$cachedir/dmenu_run
5else
6 cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~
7fi
8(
9 IFS=:
10 if stest -dqr -n "$cache" $PATH; then
11 stest -flx $PATH | sort -u | tee "$cache" | dmenu "$@"
12 else
13 dmenu "$@" < "$cache"
14 fi
15) | ${SHELL:-"/bin/sh"} &