summaryrefslogtreecommitdiff
path: root/bin/dmscripts/dmdsktp
blob: 2e0ef247ce58e5d5eefa630e8d31e00d7c538a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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 \
  )"