Advertisement
Guest User

Xdefaults

a guest
Sep 11th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. !Disable scrollbar
  2. URxvt.scrollBar: false
  3.  
  4. !Set font
  5. URxvt.font: xft:Ubuntu Mono:size=12
  6.  
  7. !Set term name to avoid ssh issues w/unknown terminal
  8. URxvt*termName:screen-256color
  9.  
  10. !Set icon, warning, change path as needed here
  11. URxvt.iconFile: /home/tartan/.icons/Faenza/apps/scalable/terminal.svg
  12.  
  13. ! Perl extensions
  14. URxvt.perl-ext-common: default,matcher,tabbedex
  15.  
  16. !Enabling clickable links
  17. URxvt.matcher.button: 1
  18. URxvt.urlLauncher: firefox
  19.  
  20. ! Cursor
  21. URxvt.cursorBlink: true
  22. URxvt.cursorColor: #657b83
  23. URxvt.cursorUnderline: true
  24.  
  25. !urxvt scrolling options
  26.  
  27. URxvt*saveLines: 12000
  28. URxvt*scrollstyle:plain
  29.  
  30. ! urxvt tabs settings:
  31.  
  32. URxvt.tabbed.tabbar-fg: 2
  33. URxvt.tabbed.tabbar-bg: 0
  34. URxvt.tabbed.tab-fg: 12
  35. URxvt.tabbed.tab-bg: 0
  36. URxvt*tabbed.autohide: yes
  37. URxvt*tabbed.new-button: no
  38. URxvt*tabbed.title: no
  39.  
  40. ! not sure what's this
  41.  
  42. URxvt*keysym.Control-Up: \033[1;5A
  43. URxvt*keysym.Control-Down: \033[1;5B
  44. URxvt*keysym.Control-Left: \033[1;5D
  45. URxvt*keysym.Control-Right: \033[1;5C
  46.  
  47. ! Colorscheme http://dotshare.it/dots/260/0/raw/
  48. ! Make sure you have NO TRAILING SPACES here
  49.  
  50. *foreground: #cbcbc5
  51. *background: #121212
  52.  
  53. !black
  54. ! *color0: #AF875F
  55. ! *color8: #AF875F
  56. *color0: #262729
  57. *color8: #554444
  58. !red
  59. *color1: #ff8888
  60. *color9: #e5505f
  61. !green
  62. *color2: #A5E12E
  63. *color10: #BDEC5F
  64. !yellow
  65. *color3: #ffaa55
  66. *color11: #e8621d
  67. !blue
  68. *color4: #66BBEE
  69. *color12: #66C9EE
  70. !magenta
  71. *color5: #9D6FFD
  72. *color13: #9D6FFD
  73. !cyan
  74. *color6: #5E7175
  75. *color14: #A2B9BE
  76. !white
  77. *color7: #CBCBC5
  78. *color15: #F7F7F1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement