diff options
Diffstat (limited to '.i3/scripts/dropdowncalc')
| -rwxr-xr-x | .i3/scripts/dropdowncalc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.i3/scripts/dropdowncalc b/.i3/scripts/dropdowncalc new file mode 100755 index 0000000..fee8f07 --- /dev/null +++ b/.i3/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 --no-save) || python -q |
