diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-06 15:10:32 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-06 15:10:32 +0000 |
commit | fa6bede3962a4729808db2c46c91b95285bf3eec (patch) | |
tree | daf1d3a26e32eaa424fbcfef469d1169240f2d4f /XTERM | |
parent | c5036cd3bca4ab8aa9b7314a6fee826a6b1444f6 (diff) |
Updated some files with changes that were lost during the backup accident.
Diffstat (limited to 'XTERM')
-rwxr-xr-x | XTERM | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -1,2 +1,18 @@ -xterm -vb -bg black -fg white -cr red -sb -sl 5000 -sk -si -geom 80x60 \ - -fn 9x15 -n xterm -title xterm & +if [ "$(xlsatoms -name AMIWM_SCREEN 2> /dev/null)" ] ; then + FG=black + BG=gray75 + TITLE=Terminal + SIZE=80x35 + #FONT="-commodore-topaz2 double 1h-medium-r-normal--16--96-96-m-70-winsys-1" + FONT="-commodore-topaz2 normal-medium-r-normal--18--96-96-m-70-winsys-1" + +else + FG=white + BG=black + TITLE=xterm + SIZE=80x60 + FONT="-misc-proggysquarettsz-medium-r-normal--0-0-0-0-c-0-ascii-0" +fi + +xterm -vb -bg $BG -fg $FG -cr red -sb -sl 5000 -sk -si -geom $SIZE \ + -fn "$FONT" -n "$TITLE" -title "$TITLE" & |