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