7 lines
143 B
Bash
7 lines
143 B
Bash
|
if ps -C rofi > /dev/null
|
||
|
then
|
||
|
echo "Already running"
|
||
|
else
|
||
|
rofi -show combi -combi-modi drun,calc:~/.config/rofi/show-calculator.sh
|
||
|
fi
|