dotfiles/rofi/show-calculator.sh

11 lines
240 B
Bash
Raw Normal View History

2021-11-12 14:14:13 +01:00
#!/bin/bash
if [[ -z "$1" ]]; then
2021-11-12 15:14:13 +01:00
echo "Calc Mode"
2021-11-12 14:14:13 +01:00
else
killall rofi
# so rofi doesn't complain "can't launch rofi inside rofi"
2022-08-03 12:51:26 +02:00
rofi -show calc -modi calc -no-show-match -no-sort -calc-command "echo -n '{result}' | xsel -i"
2021-11-12 14:14:13 +01:00
fi