summaryrefslogtreecommitdiff
path: root/dmenu/dmenu_path
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:08:47 -0500
committerGitHub <noreply@github.com>2025-09-08 21:08:47 -0500
commit9835e81684ffb53cb258c7de754998621661c15f (patch)
tree9c2b8e58b02ef1ae1440dd40101a7736d090fccc /dmenu/dmenu_path
parente2ec2e4acbf07da282c7ce4d4370ed1a83e11e70 (diff)
parent04cfeeb799b4ee6ac990e5d6e1b5302251133d77 (diff)
Merge pull request #18 from ihateamongus/codex/add-staggering-color-effect-demo-in-tools
Add color staggering demo and minimal login manager
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