Skip to content

Instantly share code, notes, and snippets.

@theRemix
Last active March 12, 2020 21:38
Show Gist options
  • Save theRemix/1298a146d0040b6029327271a1aae3f9 to your computer and use it in GitHub Desktop.
Save theRemix/1298a146d0040b6029327271a1aae3f9 to your computer and use it in GitHub Desktop.
xterm settings for bbs
#!/bin/sh
# settings based off of https://github.com/jcs/ansiterm/blob/master/ansiterm.sh
# get "Px437 IBM VGA9" from http://int10h.org/oldschool-pc-fonts/
env LANG= xterm \
-g 80x24 \
-tn ansi \
-fa "Px437 IBM VGA9" \
-fs 24 \
-bg black \
-fg "#aaaaaa" \
-xrm "*boldMode: false" \
-xrm "*color0: #000000" \
-xrm "*color1: #aa0000" \
-xrm "*color2: #00aa00" \
-xrm "*color3: #aa5600" \
-xrm "*color4: #0000aa" \
-xrm "*color5: #aa00aa" \
-xrm "*color6: #00aaaa" \
-xrm "*color7: #aaaaaa" \
-xrm "*color8: #555555" \
-xrm "*color9: #fe5656" \
-xrm "*color10: lime" \
-xrm "*color11: #fefe56" \
-xrm "*color12: #5656fe" \
-xrm "*color13: magenta" \
-xrm "*color14: #56fefe" \
-xrm "*color15: white"
@theRemix
Copy link
Author

Screenshot from 2020-03-12 14-38-15

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment