blob: f07fb7b11d9ff6c8e4419a65b498bab990d5bec4 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Searches through .desktop files and prompt to launch them via dmenu
choice="$(find ~/.local/share/applications -maxdepth 1 -type f -not -iname "wine-extension*" |
awk '/\/[^.\/]+\.desktop/ {print $(NF-1)}' |
commander -s -d -x -c)"
[ "$choice" ] || exit 1
gtk-launch "$choice"
|