소스 검색

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

불러오는 중...
취소
저장