From: Don Armstrong Date: Thu, 29 Jun 2017 20:02:07 +0000 (-0500) Subject: use exec insead X-Git-Url: https://git.donarmstrong.com/?p=bin.git;a=commitdiff_plain;h=56b6d9e07c589a3ce766b07bd0ea4a799a95e8ff use exec insead --- diff --git a/st b/st old mode 100644 new mode 100755 index b017fec..8080a8c --- a/st +++ b/st @@ -1,11 +1,10 @@ #!/bin/sh - if which stterm >/dev/null 2>&1; then - stterm -f 'Fixed:pizelsize=20'; + exec stterm -f 'Fixed:pixelsize=20'; elif which urxvt >/dev/null 2>&1; then - urxvt -f 'Fixed:pixelsize=20'; + exec urxvt -f 'Fixed:pixelsize=20'; elif which uxterm >/dev/null 2>&1; then - uxterm; + exec uxterm; else - xterm; + exec xterm; fi;