diff options
| author | 2025-01-23 09:10:01 -0500 | |
|---|---|---|
| committer | 2025-01-23 09:10:01 -0500 | |
| commit | a135ec293eab8e7c9e5f581dc70cd5cf2bea587a (patch) | |
| tree | a883c0c879bcbd9052ae0cac31b81ade94551507 /scripts/dmenu-path | |
| parent | dce9ab07ae0b0496e432f213466fd6f442944fa7 (diff) | |
| download | dotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.tar.gz dotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.tar.bz2 dotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.zip | |
Go back to stable wayland and mesa
Diffstat (limited to 'scripts/dmenu-path')
| -rwxr-xr-x | scripts/dmenu-path | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dmenu-path b/scripts/dmenu-path index e0637fe..9c8122a 100755 --- a/scripts/dmenu-path +++ b/scripts/dmenu-path @@ -1,3 +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"\n" }' | sort -rn | cut -d' ' -f 2 +printf $PATH -print0 | tr ':' '\0' | uniq -z | xargs -0 ls -Llu --time-style=+%s | awk '/^(-|l)/ { printf $6" "$7"\n" }' | sort -rn | cut -d' ' -f 2 |