From ddff9cf6eb63fea91ef0f157c78effd7a2351f24 Mon Sep 17 00:00:00 2001 From: shmibs Date: Thu, 22 May 2014 11:32:52 -0700 Subject: added dmenu calculator also added easy colour grabber --- .config/herbstluftwm/calc.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 .config/herbstluftwm/calc.sh (limited to '.config/herbstluftwm/calc.sh') diff --git a/.config/herbstluftwm/calc.sh b/.config/herbstluftwm/calc.sh new file mode 100755 index 0000000..aa041a6 --- /dev/null +++ b/.config/herbstluftwm/calc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +acc=0 +in="first" +prompt="calc:" +pi="3.1415926535897932384626433832795028841971694" +e="2.7182818284590452353602874713526624977572471" +while [ "$in" != "" ]; do + val=0 + + in=$(echo "" | dmenu -q -h 18 -nb $1 -nf $2 -sb $3 -sf $4 -p "$prompt") + + out=$(echo "pi=$pi; e=$e; $acc $in" | calc -p 2>&1 | tr -d "\n") + + if [ "$out" = "Missing operator" ]; then + out=$(echo "pi=$pi; e=$e; $in" | calc -p 2>&1) + fi + + # check for error output + if [ "${?#0}" != "" ]; then + out=$(echo "$out" | tr -d "\n") + prompt="calc: ($acc) err: $out" + else + acc=$out + prompt="calc: ($acc)" + fi +done + -- cgit v1.2.3