Introduction
Introduction Statistics Contact Development Disclaimer Help
dmenu_path - dmenu - my customized version of dmenu (hiltjo branch)
git clone git://git.codemadness.org/dmenu
Log
Files
Refs
README
LICENSE
---
dmenu_path (240B)
---
1 #!/bin/sh
2
3 cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
4 cache="$cachedir/dmenu_run"
5
6 [ ! -e "$cachedir" ] && mkdir -p "$cachedir"
7
8 IFS=:
9 if stest -dqr -n "$cache" $PATH; then
10 stest -flx $PATH | sort -u | tee "$cache"
11 else
12 cat "$cache"
13 fi
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.