diff options
Diffstat (limited to 'launch')
-rwxr-xr-x | launch | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,12 +3,12 @@ launch_list="$HOME/.config/launch.list" if [ ! -r "$launch_list" ]; then - notify-send "Launcher Error" "Program list not found: $launch_list" - exit 1 + 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" )" +prog="$(dmenu -l 30 -i -p "Choose a program to launch:" <"$launch_list")" [ -z "$prog" ] && exit 0 -setsid "$prog" > /dev/null 2>&1 & +setsid "$prog" >/dev/null 2>&1 & |