diff options
Diffstat (limited to 'scripts/dmenu-path0')
| -rwxr-xr-x | scripts/dmenu-path0 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/dmenu-path0 b/scripts/dmenu-path0 new file mode 100755 index 0000000..0e50457 --- /dev/null +++ b/scripts/dmenu-path0 @@ -0,0 +1,3 @@ +#! /usr/bin/env sh +# https://github.com/ema/dotfiles/blob/fb7f5cab530daba74edefb9cecb401262db063a9/bin/dmenu_path +printf $PATH -print0 | tr ':' '\0' | xargs -0 ls -Llu --time-style=+%s | awk '/^(-|l)/ { printf $6" "$7"\0" }' | sort -zrn | cut -z -d' ' -f 2 |