summaryrefslogtreecommitdiff
path: root/bin/guiscripts/dmdsktp
blob: 3711f13d5b208b6acfba3f60417e7c2befd87e82 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Searches through .desktop files and prompt to launch them via dmenu
gtk-launch "$(find ~/.local/share/applications \
    -maxdepth 1 \
    -type f \
    -not -iname "wine-extension*" -a -iname "*.desktop" \
    -printf "%f\n" |
	cut -d. -f1 |
	dmenu -i -p "app:" -g 1)"