You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/scripts/.bin/winmenu.sh

13 lines
216 B
Bash

#!/bin/sh
if command -v rofi >/dev/null 2>&1;
then
program="rofi -show window -combi-hide-mode-prefix -combi-modi drun,run -theme .bin/rofi-slate-theme.rasi"
else
program="i3-winmenu.py"
fi
$program "$@"