Xinqi Bao's Git

keyboard grab works on the dmenu window now (not on the root window) - thx for Kris...
[dmenu.git] / dmenu_path
1 #!/bin/sh
2 IFS=:
3 for dir in $PATH
4 do
5 for file in "$dir"/*
6 do
7 test -x "$file" && echo "${file##*/}"
8 done
9 done | sort | uniq