Advertisement
krax

Xdefaults color terminal

Aug 9th, 2011
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.44 KB | None | 0 0
  1. ! ----------------------------------------------------------------------------
  2. ! file:     ~/.Xdefaults
  3. ! author:   Thayer Williams - http://cinderwick.ca
  4. ! modified: June 2009
  5. ! vim:enc=utf-8:nu:ai:si:et:ts=4:sw=4:ft=xdefaults:
  6. ! ----------------------------------------------------------------------------
  7.  
  8. ! Xcursor --------------------------------------------------------------------
  9.  
  10. Xcursor*theme:  Vanilla-DMZ-AA
  11. Xcursor.size:   22
  12.  
  13.  
  14. ! terminal colors ------------------------------------------------------------
  15.  
  16. ! A tango-esque light theme
  17.  
  18. *foreground:#a0a0a0
  19. *background:#1B1D1E
  20.  
  21. !black
  22. *color0:    #1B1D1E
  23. *color8:    #505354
  24. !red
  25. *color1:    #F92672
  26. *color9:    #FF669D
  27. !green
  28. *color2:    #A6E22E
  29. *color10:   #BEED5F
  30. !yellow
  31. *color3:    #FD971F
  32. *color11:   #E6DB74
  33. !blue
  34. *color4:    #66D9EF
  35. *color12:   #66D9EF
  36. !magenta
  37. *color5:    #9E6FFE
  38. *color13:   #9E6FFE
  39. !cyan
  40. *color6:    #5E7175
  41. *color14:   #A3BABF
  42. !white
  43. *color7:    #CCCCC6
  44. *color15:   #F8F8F2
  45.  
  46.  
  47. ! rxvt-unicode ---------------------------------------------------------------
  48.  
  49. !for normal X11 fonts:
  50. *font:     -*-dina-medium-r-*-*-15-*-*-*-*-*-*-*
  51. *boldFont: -*-dina-medium-r-*-*-15-*-*-*-*-*-*-*
  52. !urxvt*font:     -*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*
  53. !rxvt*boldFont:  -*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*
  54.  
  55. urxvt*geometry:         105x30
  56. urxvt*depth:            24
  57. urxvt*transparent:      true
  58. urxvt*internalBorder:   2
  59. urxvt*fading:           0
  60. urxvt*shading:          10
  61. urxvt*tintColor:        #000000
  62. urxvt*cursorColor:      #FD971F
  63. urxvt*inheritPixmap:    false
  64. urxvt*saveLines:        32767
  65. urxvt*visualBell:       true
  66. urxvt*scrollTtyKeypress:true
  67. urxvt*scrollWithBuffer: false
  68. urxvt*scrollTtyOutput:  false
  69. urxvt*scrollBar:        false
  70. urxvt*loginShell:       true
  71. urxvt*cutchars:         "()*,<>[]{}|'
  72. urxvt*print-pipe:       cat > $(echo urxvt.dump.$(date +'%Y%M%d%H%m%S'))
  73. urxvt*secondaryScroll:  true
  74. urxvt*mapAlert:         true
  75. urxvt*utmpInhibit:      true
  76. urxvt*perl-lib:         /usr/lib/urxvt/perl/
  77. urxvt*perl-ext-common:  option-popup,matcher
  78. urxvt*urlLauncher:      /usr/bin/firefox
  79. urxvt*matcher.button:   1
  80. !urxvt*background:      rgba:2222/2222/2222/dddd
  81.  
  82.  
  83. aterm*tinting:#ffffff
  84. aterm*transparent:false
  85. aterm*shading:40
  86. aterm*scrollBar:false
  87. aterm*fade: 60
  88. aterm*geometry:85x30
  89. aterm*truetintingType:True
  90.  
  91.  
  92.  
  93. ! xterm ----------------------------------------------------------------------
  94.  
  95. xterm*font:             -*-dina-medium-r-*-*-15-*-*-*-*-*-*-*
  96. xterm*boldFont:         -*-dina-medium-r-*-*-15-*-*-*-*-*-*-*
  97. xterm*dynamicColors:    true
  98. xterm*utf8:             2
  99. xterm*eightBitInput:    true
  100. xterm*saveLines:        32767
  101. xterm*scrollTtyKeypress:true
  102. xterm*scrollTtyOutput:  false
  103. xterm*scrollBar:        false
  104. xterm*jumpScroll:       true
  105. xterm*multiScroll:      true
  106. xterm*toolBar:          false
  107. xterm*loginShell:       true
  108. xterm*metaSendsEscape:  true
  109.  
  110.  
  111. ! x11-ssh-askpass ------------------------------------------------------------
  112.  
  113. x11-ssh-askpass*font:                   -*-dina-medium-r-*-*-12-*-*-*-*-*-*-*
  114. x11-ssh-askpass*background:             #000000
  115. x11-ssh-askpass*foreground:             #ffffff
  116. x11-ssh-askpass.Button*background:      #000000
  117. x11-ssh-askpass.Indicator*foreground:   #ff9900
  118. x11-ssh-askpass.Indicator*background:   #0a0a0a
  119. x11-ssh-askpass*topShadowColor:         #000000
  120. x11-ssh-askpass*bottomShadowColor:      #000000
  121. x11-ssh-askpass.*borderWidth:           1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement