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 Jukka's fix
master
Anselm R. Garbe
17 years ago
parent
64697cdd0c
commit
8b633bf17d
2 changed files
with
7 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
config.mk
+6
-4
dmenu_path
+ 1
- 1
config.mk
View File
@ -1,5 +1,5 @@
# dmenu version
VERSION
=
3.
1
VERSION
=
3.
2
# Customize below to fit your system
+ 6
- 4
dmenu_path
View File
@ -3,20 +3,22 @@ CACHE=$HOME/.dmenu_cache
UPTODATE=1
IFS=:
uptodate() { [ $UPTODATE -eq 1 ]; }
if test ! -f $CACHE
then
unset
UPTODATE
UPTODATE
=0
fi
if
test $UPTODATE
if
uptodate
then
for dir in $PATH
do
test $dir -nt $CACHE &&
unset UPTODATE
test $dir -nt $CACHE &&
{ UPTODATE=0; break; }
done
fi
if
test ! $UPTODATE
if
! uptodate
then
for dir in $PATH
do
Write
Preview
Loading…
Cancel
Save