diff options
author | Kris Maglione <jg@suckless.org> | 2007-05-23 16:59:38 -0400 |
---|---|---|
committer | Kris Maglione <jg@suckless.org> | 2007-05-23 16:59:38 -0400 |
commit | 383e40dc21ec7a2d484314199ea930f09f86dd77 (patch) | |
tree | b7f7566ac8a82f34550e11d181756ab40469ead7 | |
parent | 8369e1736b4778e766f55d5476bbbd38a8b46331 (diff) |
Fix grouping in dmenu_path.
-rwxr-xr-x | dmenu_path | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ if ! uptodate then { echo "$PATH" - qfind $PATH -type f -maxdepth 1 -perm -u+x -o -perm -g+x -o -perm -o+x | + qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | sed 's,.*/,,' | sort | uniq } > $CACHE.$pid mv $CACHE.$pid $CACHE |