blob: 16add49f41b51d3b7670f5fbbc520e661a865338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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 &
|