summaryrefslogtreecommitdiff
path: root/sd/dmenu-5.0/dmenu_path
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-06-19 10:42:51 -0500
committerstkhan <personal@slickd.xyz>2021-06-19 10:42:51 -0500
commit120b0999b4d996f4e9a0d78975f7ef4923b95e7e (patch)
tree8cf3fa8dc6069b1f4cfe6a874be428cb38cb744b /sd/dmenu-5.0/dmenu_path
parente2dbb81b9144fd8be2eb89617db38fd361079fed (diff)
Remove tmp dir
Former-commit-id: f9a9e87a5573b8c6549d802405fa53c78ec419b9
Diffstat (limited to 'sd/dmenu-5.0/dmenu_path')
-rwxr-xr-xsd/dmenu-5.0/dmenu_path13
1 files changed, 0 insertions, 13 deletions
diff --git a/sd/dmenu-5.0/dmenu_path b/sd/dmenu-5.0/dmenu_path
deleted file mode 100755
index 3a7cda7..0000000
--- a/sd/dmenu-5.0/dmenu_path
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
-cache="$cachedir/dmenu_run"
-
-[ ! -e "$cachedir" ] && mkdir -p "$cachedir"
-
-IFS=:
-if stest -dqr -n "$cache" $PATH; then
- stest -flx $PATH | sort -u | tee "$cache"
-else
- cat "$cache"
-fi