Browse Source

applied anydot's dmenu_path caching patch, thank you!

master
Anselm R. Garbe 17 years ago
parent
commit
4042a11e51
1 changed files with 26 additions and 5 deletions
  1. +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

Loading…
Cancel
Save