Advertisement
elhackerlibre

.Xresources

Jan 11th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. !-------------------------
  2. ! XFT Settings gre
  3.  
  4. Xft.antialias: true
  5. Xft.autohint: false
  6. Xft.dpi: 96
  7. Xft.rgba: rgb
  8. Xft.hinting: true
  9. Xft.hinystyle: hintfull
  10. Xft.lcdfilter: lcddefault
  11.  
  12. !-------------------------
  13. ! URXVT Settings
  14.  
  15. URxvt*depth: 32
  16. URxvt*internalBorder: 3
  17. URxvt*fading: 15
  18. URxvt*geometry: 95x20+0+0
  19. URxvt*dynamicColors: on
  20. URxvt*buffered: true
  21. URxvt*urgenOnBell: true
  22. URxvt*bordeLess: false
  23. URxvt*scrollBar: false
  24. URxvt*mouseWheelScrollPage: true
  25. URxvt*cursorBlink: true
  26. URxvt*cursorUnderline: false
  27. URxvt*cursorUnderlineURLs: false
  28. URxvt*intensityStyles: false
  29. URxvt*font: xft:xos4 Terminess Powerline:style=Regular:pixelsize=10
  30. URxvt*boldfont: xft:xos4 Terminess Powerline:style=Bold:pixelsize=11
  31.  
  32. !-------------------------
  33. ! EXTENSIONS
  34.  
  35. URxvt.perl-lib: /usr/lib/urxvt/perl/
  36. URxvt*perl-ext-common: default,matcher,searchable-scrollback
  37. URxvt.cutchars: "()*,<>[]{}|''"
  38. *URxvt.perl-ext-common: osc-xterm-clipboard
  39.  
  40. !-------------------------
  41. ! URXVT COPY PASTE SHORTCUTS
  42.  
  43. URxvt*keysym.M-c: perl:clipboard:copy
  44. URxvt.keysym.M-v: perl:clipboard:pasteq
  45.  
  46. !-------------------------
  47. ! URXVT FULLSCREEN TOGGLE
  48.  
  49. URxvt.keysym.F11: perl:fullscreen:switch
  50. URxvt.perl-ext-common: default,matcher,vtwheel
  51. URxvt.matcher.button: /usr/bin/firefox
  52.  
  53. !-------------------------
  54. ! COLORS
  55.  
  56. ! BLACK
  57. #define _color0 #2F3032
  58. #define _color8 #5A5C5F
  59.  
  60. ! RED
  61. #define _color1 #984141
  62. #define _color9 #A45454
  63.  
  64. ! GREEN
  65. #define _color2 #6C6F50
  66. #define _color10 #80836A
  67.  
  68. ! YELLOW
  69. #define _color3 #A87451
  70. #define _color11 #AD856B
  71.  
  72. ! BLUE
  73. #define _color4 #375268
  74. #define _color12 #50697D
  75.  
  76. ! MAGENTA
  77. #define _color5 #4B3752
  78. #define _color13 #6F5D75
  79.  
  80. ! CYAN
  81. #define _color6 #38534F
  82. #define _color14 #5E7874
  83.  
  84. ! WHITE
  85. #define _color7 #8B8B8B
  86. #define _color15 #B3B2A8
  87.  
  88. !--------------------------
  89. !FMT Include, Statusline, ErrorMsg
  90.  
  91. #define _colorBD #D02D66
  92. #define _colorUL #BA4DC8
  93. #define _colorIT #EF9135
  94.  
  95. !--------------------------
  96. !TXT Normal, Normal, Cursor
  97.  
  98. #define _foreground #E6E5CA
  99. #define _background #100C08
  100. #define _cursorColor #A87451
  101.  
  102.  
  103. !--------------------------
  104. !SCHEME COLORS URXVT
  105.  
  106. URxvt*color0 : _color0
  107. URxvt*color1 : _color1
  108. URxvt*color2 : _color2
  109. URxvt*color3 : _color3
  110. URxvt*color4 : _color4
  111. URxvt*color5 : _color5
  112. URxvt*color6 : _color6
  113. URxvt*color7 : _color7
  114. URxvt*color8 : _color8
  115. URxvt*color9 : _color9
  116. URxvt*color10 : _color10
  117. URxvt*color11 : _color11
  118. URxvt*color12 : _color12
  119. URxvt*color13 : _color13
  120. URxvt*color14 : _color14
  121. URxvt*color15 : _color15
  122. URxvt*colorBD : _colorBD
  123. URxvt*colorUL : _colorUL
  124. URxvt*colorIT : _colorIT
  125. URxvt*foreground : _foreground
  126. URxvt*background : [90]#100C08 !Transparent efect
  127. URxvt*cursorColor : _cursorColor
  128.  
  129. !-----------------------------
  130. ! ROFI Settings
  131.  
  132. rofi.font : terminal 9
  133. rofi.lines : 6
  134. rofi.color-enable : true
  135. rofi.separator-style : none
  136. rofi.width : 37
  137. rofi.hide-scrollbar : false
  138. rofi.columns : 2
  139.  
  140. !------------------------------
  141. ! ROFI Colors
  142.  
  143. ! 'background' 'border'
  144. rofi.color-window : #100C08, #A87451
  145.  
  146. ! 'bg' 'fg' 'bgalt' 'hlbg' 'hlf'
  147. rofi.color-normal : #984141, #E6E5CA, #AD856B, #f0c674, #100C08
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement