# MINTTY COLORS: # # Pick the files (below) you want for auto-launch # make the file executable. # ################################################# #!/bin/bash # filename: BOLD # these next 4 are "bold" colors for mintty terminals sleep 1 mintty -o BackgroundColour=238,204,238 & sleep 1 mintty -o BackgroundColour=255,238,204 & sleep 1 mintty -o BackgroundColour=204,255,204 & sleep 1 mintty -o BackgroundColour=185,255,255 & sleep 1 mintty -o BackgroundColour=208,200,255 & ################################################# # #!/bin/bash # filename: PALE # These 4 are "pale colors for mintty terminals sleep 1 mintty -o BackgroundColour=255,238,238 & sleep 1 mintty -o BackgroundColour=255,255,238 & sleep 1 mintty -o BackgroundColour=235,255,235 & sleep 1 mintty -o BackgroundColour=238,238,255 & ################################################# #!/bin/bash # filename: COOL # These 4 are "cool" colors for mintty terminals sleep 1 mintty -o BackgroundColour=185,255,255 & sleep 1 mintty -o BackgroundColour=204,255,204 & sleep 1 mintty -o BackgroundColour=204,204,255 & sleep 1 mintty -o BackgroundColour=238,238,255 & ################################################# #!/bin/bash # filename: WARM # these next 4 are "warm" colors for mintty terminals sleep 1 mintty -o BackgroundColour=238,204,238 & sleep 1 mintty -o BackgroundColour=255,238,204 & sleep 1 mintty -o BackgroundColour=255,238,238 & sleep 1 mintty -o BackgroundColour=255,255,238 &` ################################################# # xterm: xterm -fg black -bg '#B9A0FF' -fa 'Monospace' -fs 14 -e /usr/bin/bash & sleep 1 xterm -fg black -bg '#7FFFD4' -fa 'Monospace' -fs 14 -e /usr/bin/bash & sleep 1 xterm -fg black -bg '#AFEEEE' -fa 'Monospace' -fs 14 -e /usr/bin/bash & sleep 1 xterm -fg black -bg '#B9FFD4' -fa 'Monospace' -fs 14 -e /usr/bin/bash & ################################################# #!/bin/bash # rxvt_terminal_colors.txt # These 4 are "cool" colors # rxvt -fg black -sl 8192 -bg plum -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & rxvt -fg black -sl 8192 -bg '#B9A0FF' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 # rxvt -fg black -sl 8192 -bg aquamarine -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & rxvt -fg black -sl 8192 -bg '#7FFFD4' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 # rxvt -fg black -sl 8192 -bg paleturquoise -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & rxvt -fg black -sl 8192 -bg '#AFEEEE' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 # rxvt -fg black -sl 8192 -bg honeydew -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & rxvt -fg black -sl 8192 -bg '#B9FFD4' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & # #!/bin/bash # these next 4 are "warm" colors rxvt -fg black -sl 8192 -bg '#FF8B69' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 rxvt -fg black -sl 8192 -bg peachpuff -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 rxvt -fg black -sl 8192 -bg '#FFB4B4' -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash & sleep 1 rxvt -fg black -sl 8192 -bg lightgoldenrod -sr -g 80x30 -fn 'Fixedsys' -e /usr/bin/bash &