ソースを参照

applied anydot's dmenu_path caching patch, thank you!

master
Anselm R. Garbe 17年前
コミット
4042a11e51
1個のファイルの変更26行の追加5行の削除
  1. +26
    -5
      dmenu_path

+ 26
- 5
dmenu_path ファイルの表示

@@ -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

読み込み中…
キャンセル
保存