Advertisement
Edmond_Dantes

.Xresources (Void theme)

Feb 7th, 2018
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.91 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3.  
  4. ! General
  5. urxvt.geometry: 65x23
  6. urxvt*loginShell:  true
  7. urxvt*locale: true
  8. urxvt*utf8: true0
  9. urxvt*print-pipe:  cat > $HOME/$(echo urxvt.dump.$(date +'%Y%M%d%H%m%S'))
  10. urxvt*saveLines: 1024
  11. urxvt*iso14755: false
  12. urxvt*preeditType: Root
  13. urxvt*altSendsEscape: true
  14. urxvt*eightBitInput: false
  15. urxvt*metaSendsEscape: true
  16. urxvt*xft.antialias: true
  17. urxvt*xft.hinting: true
  18. urxvt*xft.hintstyle: hintfull
  19. urxvt*xft.dpi: 96
  20. urxvt*xft.rgba: rgb
  21. urxvt*scrollBar: false
  22. urxvt*secondaryScroll:  true
  23. urxvt.buffered: true
  24. urxvt*urgentOnBell: true
  25. urxvt*visualBell:   true
  26. urxvt.matcher.button: 1
  27. urxvt*termName: rxvt-unicode-256color
  28. urxvt.transparent: false
  29. urxvt*renderFont: True
  30. urxvt*underlineColor:  cyan
  31. urxvt*shading: 10
  32. urxvt*fading:  10
  33. urxvt*depth: 32
  34.  
  35. ! Font
  36. urxvt*font: xft:terminus:pixelsize=14
  37. urxvt*boldFont: xft:terminusbold:pixelsize=14
  38. urxvt*italicFont:xft:terminus:italic:autohint=true:pixelsize=14
  39. urxvt*boldItalicFont: xft:terminus:bold:italic:autohint=true:pixelsize=14
  40.  
  41.  
  42. ! Color Scheme
  43.  
  44. # Main
  45. urxvt*background: #0A1513
  46. urxvt*foreground: #a7ddcf
  47. *cursor: #a7ddcf
  48.  
  49. # Colors
  50. *color0: #0A1513
  51. *color1: #5E6665
  52. *color2: #358B73
  53. *color3: #44967A
  54. *color4: #417781
  55. *color5: #4FAD96
  56. *color6: #54C3AF
  57. *color7: #a7ddcf
  58. *color8: #749a90
  59. *color9: #5E6665
  60. *color10: #358B73
  61. *color11: #44967A
  62. *color12: #417781
  63. *color13: #4FAD96
  64. *color14: #54C3AF
  65. *color15: #a7ddcf
  66. *color66: #0A1513
  67.  
  68.  
  69. !copy & paste commands
  70. urxvt*clipboard.copycmd: xclip -in -sel clip
  71. urxvt*clipboard.pastecmd: xclip -out -sel clip
  72.  
  73. ! perl extensions
  74. urxvt*perl-ext-common: default,tabbed,matcher,clipboard,keyboard-select,url-select,font-size,fullscreen,vtwheel
  75. urxvt*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
  76. urxvt*url-select.launcher: qutebrowser
  77. urxvt*url-select.underline: true
  78. urxvt*url-select.autocopy: true
  79. urxvt*url-select.button: 1
  80. urxvt*matcher.button:1
  81. urxvt*keysym.M-u: perl:url-select:select_next
  82. urxvt*keysym.M-c: perl:clipboard:copy
  83. urxvt*keysym.M-v: perl:clipboard:paste
  84. urxvt*keysym.M-Up: perl:font-size:increase
  85. urxvt*keysym.M-Down:perl:font-size:decrease
  86. urxvt*keysym.M-C-Up: perl:font-size:incglobal
  87. urxvt*keysym.M-C-Down: perl:font-size:decglobal
  88. urxvt*keysym.M-equal: perl:font-size:reset
  89. urxvt*keysym.M-slash: perl:font-size:show
  90. urxvt*keysym.M-a: perl:keyboard-select:activate
  91. urxvt*keysym.M-s perl:keyboard-select:search
  92. urxvt*keysym.F11: perl:fullscreen:switch
  93. urxvt*tabbed.tabbar-fg: 2
  94. urxvt*tabbed.tabbar-bg: 0
  95. urxvt*tabbed.tab-fg: 3
  96. urxvt*tabbed.tab-bg: 2
  97.  
  98. ! xmessage colors
  99. xmessage*foreground: #a7ddcf
  100. xmessage*background: #0A1513
  101.  
  102. ! xclock colors
  103. xclock*foreground: #a7ddcf
  104. xclock*background: #0A1513
  105. xclock*majorColor:  rgba:a7/dd/cf/ff
  106. xclock*minorColor:  rgba:a7/dd/cf/ff
  107. xclock*hourColor:   rgba:a7/dd/cf/ff
  108. xclock*minuteColor: rgba:a7/dd/cf/ff
  109. xclock*secondColor: rgba:a7/dd/cf/ff
  110.  
  111. ! Cursor
  112. xcursor*theme: Breeze-Adapta
  113. xcursor*size: 12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement