dmenu -> rofi

This commit is contained in:
mequidis
2022-07-02 19:36:48 +03:00
parent 48db47ea1f
commit 79b7d1005e
33 changed files with 13 additions and 3123 deletions

View File

@ -1,23 +0,0 @@
#!/bin/bash
choice=$(echo -e " " | dmenu -p "calc")
while :; do
case $choice in
"exit")
break
;;
"copy")
echo $answer | xclip -selection clipboard
break
;;
*)
answer=$(qalc $choice)
;;
esac
choice=$(echo -e "copy\nexit " | dmenu -p "$answer")
done