Last active
November 1, 2024 10:21
-
-
Save theRemix/1298a146d0040b6029327271a1aae3f9 to your computer and use it in GitHub Desktop.
xterm settings for bbs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
Author
theRemix
commented
Mar 12, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment