summaryrefslogtreecommitdiff
path: root/bin/guiscripts/dmdsktp
blob: d0905b7488a010e43916b887b84e398bdb16094a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# 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)"