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
simplify dmenu_run
master
Connor Lane Smith
13 years ago
parent
cf641ae496
commit
70b3418e3e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
dmenu_run
+ 1
- 1
dmenu_run
View File
@ -5,7 +5,7 @@ if [ ! -d "`dirname "$CACHE"`" ]; then
fi
(
IFS=:
if
test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"
; then
if
[ "`ls -dt $PATH "$CACHE" | head -n 1`" != "$CACHE" ]
; then
lsx $PATH | sort -u > "$CACHE"
fi
)
Write
Preview
Loading…
Cancel
Save