Advertisement
Guest User

Arc

a guest
Oct 12th, 2015
3,555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.36 KB | None | 0 0
  1. ! clean up urxvt, add keybinds
  2. URxvt.intensityStyles: false
  3. URxvt.scrollBar: false
  4. URxvt.keysym.Shift-Up: command:\033]720;1\007
  5. URxvt.keysym.Shift-Down: command:\033]721;1\007
  6. URxvt.resize-font.smaller: C-Down
  7. URxvt.resize-font.bigger: C-Up
  8. URxvt.iso14755: false
  9. URxvt.iso14755_52: false
  10.  
  11. ! font
  12. URxvt*font: xft:Source\ Code\ Pro\ for\ Powerline:size=10:antialias=true:hinting=true,xft:Source\ Code\ Pro\ for\ Powerline:size=10:antialias=true:hinting=true
  13.  
  14. ! terminal padding
  15. URxvt.internalBorder: 25
  16.  
  17. ! uncomment for transparent terminal if you are ready to be made fun of in #rice
  18. ! URxvt.transparent:    true
  19. ! URxvt.shading:        15
  20.  
  21. ! make otf / ttf fonts look pretty.  does not matter if you are using a bitmap font.
  22. Xft.autohint: 0
  23. Xft.lcdfilter:  lcddefault
  24. Xft.hintstyle:  hintslight
  25. Xft.hinting: 1
  26. Xft.antialias: 1
  27. Xft.rgba: rgb
  28.  
  29. ! clickable links, clipboard support, mouse wheel support, and on the fly font resizing
  30. ! you will need to install the relevent perl extensions for these to work
  31. URxvt.perl-ext-common: default,matcher,clipboard,vtwheel,resize-font
  32. URxvt.url-launcher: /usr/bin/firefox
  33. URxvt.matcher.button: 1
  34. URxvt.matcher.rend.0: Uline Bold fg5
  35.  
  36. ! colors
  37. *.cursorColor:  #b3bdcb
  38. *.background: #404552
  39. *.foreground: #b3bdcb
  40. ! Black + DarkGrey
  41. *.color0:  #404552
  42. *.color8:  #2a303b
  43. ! DarkRed + Red
  44. *.color1:  #cc575d
  45. *.color9:  #a3464a
  46. ! DarkGreen + Green
  47. *.color2:  #2679db
  48. *.color10: #75a9e8
  49. ! DarkYellow + Yellow
  50. *.color3:  #b3bdcb
  51. *.color11: #CAD1DB
  52. ! DarkBlue + Blue
  53. *.color4:  #5294e2
  54. *.color12: #97bfee
  55. ! DarkMagenta + Magenta
  56. *.color5:  #404552
  57. *.color13: #686d79
  58. ! DarkCyan + Cyan
  59. *.color6:  #b3bdcb
  60. *.color14: #383c4a
  61. ! LightGrey + White
  62. *.color7:  #E1E5EA
  63. *.color15: #ffffff
  64. ! for 256 color stuff
  65. *.color24:  #076678
  66. *.color66:  #427b58
  67. *.color88:  #9d0006
  68. *.color96:  #8f3f71
  69. *.color100: #79740e
  70. *.color108: #8ec07c
  71. *.color109: #83a598
  72. *.color130: #af3a03
  73. *.color136: #b57614
  74. *.color142: #b8bb26
  75. *.color167: #fb4934
  76. *.color175: #d3869b
  77. *.color208: #fe8019
  78. *.color214: #fabd2f
  79. *.color223: #ebdbb2
  80. *.color228: #f4e8ba
  81. *.color229: #fdf4c1
  82. *.color230: #ffffc8
  83. *.color234: #1d2021
  84. *.color235: #404552
  85. *.color236: #32302f
  86. *.color237: #3c3836
  87. *.color239: #504945
  88. *.color241: #665c54
  89. *.color243: #7c6f64
  90. *.color244: #928374
  91. *.color245: #928374
  92. *.color246: #a89984
  93. *.color248: #bdae93
  94. *.color250: #d5c4a1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement