aboutsummaryrefslogtreecommitdiffstats
path: root/dmenu_path
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-06-23 21:27:28 +0200
committerConnor Lane Smith <cls@lubutu.com>2011-06-23 21:27:28 +0200
commit49672e9d05540fdde14af64723f2f861918031d4 (patch)
tree7db74351d23db0b1fa057a51f0afaf2c11cc40e9 /dmenu_path
parentf7cbe710a266448122d89a02b8ba8c70423fc750 (diff)
parent07d452e0c8b158e571fb0adf528897829850ecf5 (diff)
downloaddmenu-49672e9d05540fdde14af64723f2f861918031d4.tar.zst
merge lsx -> default
Diffstat (limited to 'dmenu_path')
-rwxr-xr-xdmenu_path9
1 files changed, 0 insertions, 9 deletions
diff --git a/dmenu_path b/dmenu_path
deleted file mode 100755
index 1b1b241..0000000
--- a/dmenu_path
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-CACHE=$HOME/.dmenu_cache
-IFS=:
-
-if ! test -f "$CACHE" || find $PATH -type d -newer "$CACHE" | grep -q .; then
- find $PATH ! -type d \( -perm -1 -o -perm -10 -o -perm -100 \) | sed 's/.*\///' | sort -u > "$CACHE"
-fi
-
-cat "$CACHE"