Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. !! Colorscheme
  2.  
  3. ! special
  4. *.foreground: #93a1a1
  5. *.background: #141c21
  6. *.cursorColor: #afbfbf
  7.  
  8. ! black
  9. *.color0: #263640
  10. *.color8: #4a697d
  11.  
  12. ! red
  13. *.color1: #d12f2c
  14. *.color9: #fa3935
  15.  
  16. ! green
  17. *.color2: #819400
  18. *.color10: #a4bd00
  19.  
  20. ! yellow
  21. *.color3: #b08500
  22. *.color11: #d9a400
  23.  
  24. ! blue
  25. *.color4: #2587cc
  26. *.color12: #2ca2f5
  27.  
  28. ! magenta
  29. *.color5: #696ebf
  30. *.color13: #8086e8
  31.  
  32. ! cyan
  33. *.color6: #289c93
  34. *.color14: #33c5ba
  35.  
  36. ! white
  37. *.color7: #bfbaac
  38. *.color15: #fdf6e3
  39.  
  40. !! URxvt Appearance
  41. URxvt.font: xft:Fixedsys Excelsior:style=Regular:size=16
  42. URxvt.boldFont: xft:Fixedsys Excelsior:style=Bold:size=16
  43. URxvt.italicFont: xft:Fixedsys Excelsior:style=Italic:size=16
  44. URxvt.boldItalicfont: xft:Fixedsys Excelsior:style=Bold Italic:size=16
  45. !URxvt.letterSpace: 1
  46. URxvt.lineSpace: 0
  47. URxvt.geometry: 92x24
  48. URxvt.cursorBlink: true
  49. URxvt.cursorUnderline: false
  50. URxvt.saveline: 2048
  51. URxvt.scrollBar: false
  52. URxvt.scrollBar_right: false
  53. URxvt.urgentOnBell: true
  54. URxvt.depth: 24
  55. URxvt.iso14755: false
  56. URxvt.transparent : 1
  57. URxvt.shading : 30
  58. URxvt*fading: 30
  59. URxvt.internalBorder: 0
  60. URxvt.externalBorder: 0
  61.  
  62. !! Common Keybinds for Navigations
  63. URxvt.keysym.Shift-Up: command:\033]720;1\007
  64. URxvt.keysym.Shift-Down: command:\033]721;1\007
  65. URxvt.keysym.Control-Up: \033[1;5A
  66. URxvt.keysym.Control-Down: \033[1;5B
  67. URxvt.keysym.Control-Right: \033[1;5C
  68. URxvt.keysym.Control-Left: \033[1;5D
  69.  
  70. !! Copy Paste & Other Extensions
  71. URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select
  72. URxvt.copyCommand: xclip -i -selection clipboard
  73. URxvt.pasteCommand: xclip -o -selection clipboard
  74. URxvt.keysym.M-c: perl:clipboard:copy
  75. URxvt.keysym.M-v: perl:clipboard:paste
  76. URxvt.keysym.M-C-v: perl:clipboard:paste_escaped
  77. URxvt.keysym.M-Escape: perl:keyboard-select:activate
  78. URxvt.keysym.M-s: perl:keyboard-select:search
  79. URxvt.keysym.M-u: perl:url-select:select_next
  80. URxvt.urlLauncher: firefox
  81. URxvt.underlineURLs: true
  82. URxvt.urlButton: 1
  83.  
  84. !url-select
  85. URxvt.keysm.M-u: perl:url-select:select_next
  86. URxvt.url-select.launcher: /usr/bin/xdg-open
  87. URxvt.url-select.underline: true
  88.  
  89. !matcher
  90. URxvt.url-launcher: /usr/bin/xdg-open
  91. URxvt.matcher.button: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement