Dotfiles/bin/.bin/launcher
Jonathan Hodgson fda4b1a8b4 Stops launcher using -normal-window flag
Still not entirely happy about this, might use dmenu instead of rofi.
Not sure yet
2021-03-21 12:54:12 +00:00

12 lines
279 B
Bash
Executable file

#!/usr/bin/env bash
# This script will be called from dwm in order to launch a program
#
# It bascially just calls rofi of dmenu if rofi is not available
if type -p rofi 2> /dev/null; then
rofi -show drun -modi drun -theme themes/launchpad.rasi -normal-window
else
dmenu
fi