You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
264 B
13 lines
264 B
4 years ago
|
#!/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
|
||
|
|