]> git.donarmstrong.com Git - bin.git/commitdiff
add st command
authorDon Armstrong <don@donarmstrong.com>
Thu, 29 Jun 2017 15:34:27 +0000 (08:34 -0700)
committerDon Armstrong <don@donarmstrong.com>
Thu, 29 Jun 2017 15:34:27 +0000 (08:34 -0700)
st [new file with mode: 0644]

diff --git a/st b/st
new file mode 100644 (file)
index 0000000..b017fec
--- /dev/null
+++ b/st
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+if which stterm >/dev/null 2>&1; then
+    stterm -f 'Fixed:pizelsize=20';
+elif which urxvt >/dev/null 2>&1; then
+    urxvt -f 'Fixed:pixelsize=20';
+elif which uxterm >/dev/null 2>&1; then
+    uxterm;
+else
+    xterm;
+fi;