summaryrefslogtreecommitdiff
path: root/XTERM
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2016-04-06 15:10:32 +0000
committerIan C <ianc@noddybox.co.uk>2016-04-06 15:10:32 +0000
commitfa6bede3962a4729808db2c46c91b95285bf3eec (patch)
treedaf1d3a26e32eaa424fbcfef469d1169240f2d4f /XTERM
parentc5036cd3bca4ab8aa9b7314a6fee826a6b1444f6 (diff)
Updated some files with changes that were lost during the backup accident.
Diffstat (limited to 'XTERM')
-rwxr-xr-xXTERM20
1 files changed, 18 insertions, 2 deletions
diff --git a/XTERM b/XTERM
index 6ad7989..9a1d065 100755
--- a/XTERM
+++ b/XTERM
@@ -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" &