From 18ecdd78c7ee454a4af37f90c48e9c8c549adcf6 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 29 Jun 2017 08:34:27 -0700 Subject: [PATCH] add st command --- st | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 st diff --git a/st b/st new file mode 100644 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; -- 2.39.2