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/runmenu

12 lines
283 B
Bash

#!/bin/sh
if command -v rofi >/dev/null 2>&1;
then
launcher="rofi -show combi -combi-hide-mode-prefix -combi-modi drun,run"
else
launcher="dmenu_run -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
fi
$launcher "$@"