This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dmenu
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
applied anydot's dmenu_path caching patch, thank you!
master
Anselm R. Garbe
17 years ago
parent
aa2f73fc88
commit
4042a11e51
1 changed files
with
26 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+26
-5
dmenu_path
+ 26
- 5
dmenu_path
View File
@ -1,9 +1,30 @@
#!/bin/sh
CACHE=$HOME/.dmenu_cache
UPTODATE=1
IFS=:
for dir in $PATH
do
for file in "$dir"/*
if test ! -f $CACHE
then
unset UPTODATE
fi
if test $UPTODATE
then
for dir in $PATH
do
test -x "$file" && echo "${file##*/}"
test
$dir -nt $CACHE && unset UPTODATE
done
done | sort | uniq
fi
if test ! $UPTODATE
then
for dir in $PATH
do
for file in "$dir"/*
do
test -x "$file" && echo "${file##*/}"
done
done | sort | uniq > $CACHE
fi
cat $CACHE
Write
Preview
Loading…
Cancel
Save