From 850ffc5365a0af36fe097237a37464a1f8afba8b Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 23 Apr 2018 20:14:59 -0700 Subject: [PATCH] dropdown calc added --- .scripts/dropdowncalc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 .scripts/dropdowncalc 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