diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-04-24 22:27:42 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-04-24 22:27:42 +0530 |
commit | 5d0383d0f874348cc3e0f363bd5d42aa273a4551 (patch) | |
tree | fa660649b1fd1b48320e0fe5b969e508929ce2bc /bkp/dmenu_path | |
parent | 23f008aa94cadca3b2db7ce963a1d1b23f0733e5 (diff) | |
download | dmenu-5d0383d0f874348cc3e0f363bd5d42aa273a4551.tar.gz dmenu-5d0383d0f874348cc3e0f363bd5d42aa273a4551.tar.bz2 dmenu-5d0383d0f874348cc3e0f363bd5d42aa273a4551.zip |
Patched Dmenu
Diffstat (limited to 'bkp/dmenu_path')
-rw-r--r-- | bkp/dmenu_path | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/bkp/dmenu_path b/bkp/dmenu_path deleted file mode 100644 index 3a7cda7..0000000 --- a/bkp/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 |