6 lines
252 B
Bash
Executable File
6 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
EXPRESSION=$(printf "" | dmenu -b -w $(xdotool getactivewindow) -p "calculator")
|
|
RESULT=$(qalc $EXPRESSION)
|
|
printf "" | dmenu -b -w $(xdotool getactivewindow) -p "$RESULT"
|
|
echo $RESULT | sed 's/^[^=≈]*[=≈]//' | xclip -selection clipboard
|