diff options
| author | Andrew <saintruler@gmail.com> | 2021-09-25 19:44:16 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-09-25 19:44:16 +0400 |
| commit | 185059028e6acd21f96eb771e586d428c05f1c15 (patch) | |
| tree | 8d798766d2e9258a1ac68f6abb29360b00bc50cf /.local/bin | |
| parent | bd330942776437d7965ecdb8863b0cb4d080b2ee (diff) | |
Added support for symlinks in dmenu-desktop script
Diffstat (limited to '.local/bin')
| -rwxr-xr-x | .local/bin/scripts/dmenu-desktop | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/scripts/dmenu-desktop b/.local/bin/scripts/dmenu-desktop index 82504e1..dff8006 100755 --- a/.local/bin/scripts/dmenu-desktop +++ b/.local/bin/scripts/dmenu-desktop @@ -2,7 +2,7 @@ # find "/usr/share/applications" "$XDG_DATA_HOME/applications" -type f \ # | dmenucmd -i -find "/usr/share/applications" "$XDG_DATA_HOME/applications" -type f \ +find "/usr/share/applications" "$XDG_DATA_HOME/applications" -type f,l \ | xargs grep "^Name=" \ | sed -e "s/\(.*\):Name=\(.*\)/\2\t\1/g" - \ | sort \ |