.Xresources 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ! Xterm settings
  2. ! face - DejaVu Sans Mono for non-free systems
  3. ! - hack for free systems (with ttf-liberation-fonts, i think)
  4. ! xterm*faceName: DejaVu Sans Mono
  5. xterm*faceName: Hack
  6. xterm*faceSize: 14
  7. term*loginShell: true
  8. xterm*saveLines: 5000
  9. xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
  10. xterm*eightBitInput: false
  11. XTerm*allowBoldFonts: false
  12. xterm*termName: xterm-256color
  13. ! XTerm.vt100.font: 7x13
  14. XTerm.vt100.translations: #override \n\
  15. Ctrl <Key> minus: smaller-vt-font() \n\
  16. Ctrl <Key> plus: larger-vt-font() \n\
  17. ! Base16 Gruvbox dark, hard
  18. ! Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
  19. #define base00 #1d2021
  20. #define base01 #3c3836
  21. #define base02 #504945
  22. #define base03 #665c54
  23. #define base04 #bdae93
  24. #define base05 #d5c4a1
  25. #define base06 #ebdbb2
  26. #define base07 #fbf1c7
  27. #define base08 #fb4934
  28. #define base09 #fe8019
  29. #define base0A #fabd2f
  30. #define base0B #b8bb26
  31. #define base0C #8ec07c
  32. #define base0D #83a598
  33. #define base0E #d3869b
  34. #define base0F #d65d0e
  35. *.foreground: base05
  36. #ifdef background_opacity
  37. *.background: [background_opacity]base00
  38. #else
  39. *.background: base00
  40. #endif
  41. *.cursorColor: base05
  42. *.color0: base00
  43. *.color1: base08
  44. *.color2: base0B
  45. *.color3: base0A
  46. *.color4: base0D
  47. *.color5: base0E
  48. *.color6: base0C
  49. *.color7: base05
  50. *.color8: base03
  51. *.color9: base08
  52. *.color10: base0B
  53. *.color11: base0A
  54. *.color12: base0D
  55. *.color13: base0E
  56. *.color14: base0C
  57. *.color15: base07
  58. ! Note: colors beyond 15 might not be loaded (e.g., xterm, urxvt),
  59. ! use 'shell' template to set these if necessary
  60. *.color16: base09
  61. *.color17: base0F
  62. *.color18: base01
  63. *.color19: base02
  64. *.color20: base04
  65. *.color21: base06