diff options
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/dropdowncalc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.scripts/dropdowncalc b/.scripts/dropdowncalc new file mode 100755 index 0000000..7c4dbff --- /dev/null +++ b/.scripts/dropdowncalc @@ -0,0 +1,5 @@ +#!/bin/sh +# This script ensures that i3 will spawn a calculator. +# If R is installed, it will run R, otherwise it will run +# Python. +([[ -e /usr/bin/R ]] && R -q) || python -q |
