Advertisement
msx

urxvt's ~/.Xdefaults config

msx
Apr 5th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. msx@heybeavis ~> cat .Xdefaults
  2. ####
  3. #### ~/.Xdefaults
  4. ####
  5.  
  6. ####################################
  7. #### rxvt-unicode ####
  8. ####################################
  9.  
  10. !##urxvt*italicFont:
  11. !##urxvt*boldItalicFont:
  12. URxvt*scrollTtyOutput: False
  13. URxvt*scrollTtyKeypress: True
  14. URxvt*secondaryScroll: True
  15. URxvt*saveLines: 15000
  16. URxvt*scrollBar_right: false
  17. URxvt*scrollBar: false
  18. URxvt*borderLess: false
  19. URxvt*cursorBlink: true
  20.  
  21. !## Disable ISO 14755 mode so we can use C-S-Left and C-S-Right to move windows/tabs in tmux
  22. URxvt*iso14755: False
  23. URxvt*iso14755_52: False
  24.  
  25. !## teh transparency stuff
  26. URxvt.depth: 32
  27. URxvt.background: [94]#300A24
  28. !##URxvt*inheritPixmap: true
  29. !##URxvt*tintColor: white
  30. !##URxvt*shading: 100
  31.  
  32. !## These 3 lines make links clickable
  33. URxvt*urlLauncher: firefox
  34. URxvt*matcher.button: 1
  35. URxvt*perl-ext-common: matcher,readline
  36. URxvt*colorUL: yellow
  37.  
  38. !## geometry and font
  39. !URxvt.geometry: 260x65
  40. URxvt.font: xft:Terminus:pixelsize=9
  41. URxvt.boldFont: xft:Terminus:pixelsize=9:style=bold
  42. !## URxvt*letterSpace: -1
  43. URxvt.fading: 30
  44.  
  45. !## change default colors
  46. URxvt*background: #300A24
  47. URxvt*foreground: #F5F5F5
  48.  
  49. !## black
  50. URxvt.color0 : #2E2E34343636
  51. URxvt.color8 : #555557575353
  52. !## red
  53. URxvt.color1 : #CCCC00000000
  54. URxvt.color9 : #EFEF29292929
  55. !## green
  56. URxvt.color2 : #4E4E9A9A0606
  57. URxvt.color10 : #8A8AE2E23434
  58. !## yellow
  59. URxvt.color3 : #C4C4A0A00000
  60. URxvt.color11 : #FCFCE9E94F4F
  61. !## blue
  62. URxvt.color4 : #34346565A4A4
  63. URxvt.color12 : #72729F9FCFCF
  64. !## magenta
  65. URxvt.color5 : #757550507B7B
  66. URxvt.color13 : #ADAD7F7FA8A8
  67. !## cyan
  68. URxvt.color6 : #060698209A9A
  69. URxvt.color14 : #3434E2E2E2E2
  70. !## white
  71. URxvt.color7 : #D3D3D7D7CFCF
  72. URxvt.color15 : #EEEEEEEEECEC
  73.  
  74.  
  75. !## Pearl extensions
  76. !## clipboard - https://github.com/muennich/urxvt-perls
  77.  
  78. URxvt.perl-ext-common: ...,clipboard
  79. URxvt.keysym.M-c: perl:clipboard:copy
  80. URxvt.keysym.M-v: perl:clipboard:paste
  81. URxvt.keysym.M-C-v: perl:clipboard:paste_escaped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement