summaryrefslogtreecommitdiff
path: root/launch
diff options
context:
space:
mode:
Diffstat (limited to 'launch')
-rwxr-xr-xlaunch14
1 files changed, 0 insertions, 14 deletions
diff --git a/launch b/launch
deleted file mode 100755
index f7189ed..0000000
--- a/launch
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-launch_list="$HOME/.config/launch.list"
-
-if [ ! -r "$launch_list" ]; then
- notify-send "Launcher Error" "Program list not found: $launch_list"
- exit 1
-fi
-
-prog="$(dmenu -l 30 -i -p "Choose a program to launch:" <"$launch_list")"
-
-[ -z "$prog" ] && exit 0
-
-setsid "$prog" >/dev/null 2>&1 &