diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-04-23 20:14:59 -0700 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-04-23 20:14:59 -0700 |
| commit | 850ffc5365a0af36fe097237a37464a1f8afba8b (patch) | |
| tree | 468373631f185185bcaa6087ea3d1a2e62681109 | |
| parent | ecd39ff61ff17bfccb5c5473249506f2b4784c6f (diff) | |
| download | eibhear-850ffc5365a0af36fe097237a37464a1f8afba8b.tar.gz eibhear-850ffc5365a0af36fe097237a37464a1f8afba8b.tar.zst eibhear-850ffc5365a0af36fe097237a37464a1f8afba8b.zip | |
dropdown calc added
| -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 |
