Advertisement
Guest User

xresources solarized

a guest
Jun 20th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. ! Fonts
  2. URxvt*font: xft:Roboto Mono for Powerline:style=Medium:size=9,\
  3. xft:DejaVu Sans Mono for Powerline:style=Book:size=9,\
  4. xft:Incosolata for Powerline:style=Regular:size=9
  5.  
  6.  
  7.  
  8. !-------------------------------------------------------------------------------
  9. ! URxvt settings
  10. ! Colours lifted from Solarized (http://ethanschoonover.com/solarized)
  11. ! More info at:
  12. ! http://pod.tst.eu/http://cvs.schmorp.de/rxvt-unicode/doc/rxvt.1.pod
  13. !-------------------------------------------------------------------------------
  14.  
  15. URxvt.depth: 32
  16. URxvt.geometry: 90x30
  17. URxvt.fading: 20
  18. ! URxvt.urgentOnBell: true
  19. ! URxvt.visualBell: true
  20. URxvt.loginShell: true
  21. URxvt.internalBorder: 6
  22. URxvt.lineSpace: 0
  23. URxvt*scrollTtyOutput: false
  24. URxvt*scrollWithBuffer: true
  25. URxvt*scrollTtyKeypress: true
  26.  
  27. URxvt.keysym.Control-Up: \033[1;5A
  28. URxvt.keysym.Control-Down: \033[1;5B
  29. URxvt.keysym.Control-Left: \033[1;5D
  30. URxvt.keysym.Control-Right: \033[1;5C
  31. URxvt.saveLines: 200000
  32.  
  33. URxvt.keysym.Shift-Control-V: eval:paste_clipboard
  34. URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
  35.  
  36. ! Fix font space
  37.  
  38. ! Scrollbar
  39. URxvt.scrollStyle: rxvt
  40. URxvt.scrollBar: false
  41.  
  42. #define S_base04 #004b56
  43. #define S_base03 #002b36
  44. #define S_base02 #073642
  45. #define S_base01 #586e75
  46. #define S_base00 #657b83
  47. #define S_base0 #839496
  48. #define S_base1 #93a1a1
  49. #define S_base2 #eee8d5
  50. #define S_base3 #fdf6e3
  51.  
  52. #define S_OPP #FFD4C9
  53.  
  54. *background: S_base03
  55. *foreground: S_base0
  56. *fadeColor: S_base0
  57. *cursorColor: S_base1
  58. *pointerColorBackground:S_base01
  59. *pointerColorForeground:S_base1
  60.  
  61. #define S_yellow #b58900
  62. #define S_orange #cb4b16
  63. #define S_red #dc322f
  64. #define S_magenta #d33682
  65. #define S_violet #6c71c4
  66. #define S_blue #268bd2
  67. #define S_cyan #2aa198
  68. #define S_green #859900
  69.  
  70. !! black dark/light
  71. *color0: S_base02
  72. *color8: S_base04
  73.  
  74. !! red dark/light
  75. *color1: S_red
  76. *color9: S_orange
  77.  
  78. !! green dark/light
  79. *color2: S_green
  80. *color10: S_base01
  81.  
  82. !! yellow dark/light
  83. *color3: S_yellow
  84. *color11: S_base00
  85.  
  86. !! blue dark/light
  87. *color4: S_blue
  88. *color12: S_base0
  89.  
  90. !! magenta dark/light
  91. *color5: S_magenta
  92. *color13: S_violet
  93.  
  94. !! cyan dark/light
  95. *color6: S_cyan
  96. *color14: S_base1
  97.  
  98. !! white dark/light
  99. *color7: S_base2
  100. *color15: S_base3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement