12 lines
264 B
Bash
Executable file
12 lines
264 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
|
|
else
|
|
dmenu
|
|
fi
|
|
|