aboutsummaryrefslogtreecommitdiff
path: root/dmenu_dt
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu_dt')
-rwxr-xr-xdmenu_dt12
1 files changed, 0 insertions, 12 deletions
diff --git a/dmenu_dt b/dmenu_dt
deleted file mode 100755
index b736722..0000000
--- a/dmenu_dt
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-DIR1=~/.local/share/applications
-DIR2=/usr/share/applications
-
-RES=`ls $DIR1 $DIR2 | sed 's/.desktop$//g' | dmenu -i`
-
-gio launch $DIR1/$RES.desktop &> /dev/null
-
-if [[ $? != 0 ]]; then
- gio launch $DIR2/$RES.desktop
-fi