summaryrefslogtreecommitdiff
path: root/dmenu/dmenu_path
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:02:18 -0500
committerauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:02:18 -0500
commit9e10c2714cd159ce953155225cbe2ecc6810bd7f (patch)
tree39cf7b7d40d3e9808e436cfa208bccd9a8c43208 /dmenu/dmenu_path
parentd11aec86841f77edd6eba3e07aa1e7e591e9da2a (diff)
Add minimal X11 login manager and cleanup
Diffstat (limited to 'dmenu/dmenu_path')
-rwxr-xr-xdmenu/dmenu_path13
1 files changed, 0 insertions, 13 deletions
diff --git a/dmenu/dmenu_path b/dmenu/dmenu_path
deleted file mode 100755
index 3a7cda7..0000000
--- a/dmenu/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