Xinqi Bao's Git

Wait for an Expose and draw the menu immediately after mapping the window.
[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