From: Don Armstrong Date: Thu, 29 Jun 2017 15:34:27 +0000 (-0700) Subject: add st command X-Git-Url: https://git.donarmstrong.com/?p=bin.git;a=commitdiff_plain;h=18ecdd78c7ee454a4af37f90c48e9c8c549adcf6 add st command --- 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;