dotfiles/awesome/scripts/toggle_rofi.sh

8 lines
197 B
Bash
Raw Normal View History

if ps -C rofi > /dev/null
then
echo "Already running"
else
export TERMINAL=alacritty
rofi -show combi -combi-modi drun,calc:~/.config/rofi/show-calculator.sh -sort -levenshtein-sort
fi