1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-20 18:51:43 +00:00
dotfiles/scripts/.bin/runmenu

12 lines
283 B
Plaintext
Raw Normal View History

2016-01-10 11:55:09 +00:00
#!/bin/sh
if command -v rofi >/dev/null 2>&1;
then
2018-09-12 17:04:59 +00:00
launcher="rofi -show combi -combi-hide-mode-prefix -combi-modi drun,run"
2016-01-10 11:55:09 +00:00
else
launcher="dmenu_run -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
fi
$launcher "$@"