aboutsummaryrefslogtreecommitdiffstats
path: root/.config/herbstluftwm/calc.sh
blob: 358f43d1a6007fa4b3adae66ae43b4f21b4b9d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

acc=0
in="first"
prompt="calc:"
pi="3.1415926535897932384626433832795028841971694"
e="2.7182818284590452353602874713526624977572471"
while [ "$in" != "" ]; do
	in=$(echo "" | dmenu -q -h 18 -nb $1 -nf $2 -sb $3 -sf $4 -p "$prompt")

	# replace "ans" with the previous value
	in=$(echo $in | sed -e "s/ans/$acc/g")

	out=$(echo "pi=$pi; e=$e; $acc $in" | calc -p 2>&1)
	
	if [ "${?#0}" != "" ]; then
		out=$(echo "$out" | tr -d "\n")
		if [ "$out" = "Missing operator" ]; then
			out=$(echo "pi=$pi; e=$e; $in" | calc -p 2>&1)
			if [ "${?#0}" != "" ]; then
				out=$(echo "$out" | tr -d "\n")
				prompt="calc: ($acc) err: $out"
			else
				acc=$out
				prompt="calc: ($acc)"
			fi
		else
			out=$(echo "$out" | tr -d "\n")
			prompt="calc: ($acc) err: $out"
		fi
	fi
done