Add urxvt config
This commit is contained in:
parent
d8c3a5aeb2
commit
c08dec0e7f
2 changed files with 56 additions and 0 deletions
20
urxvt/README.md
Normal file
20
urxvt/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# urxvt
|
||||
|
||||
a.k.a. rxvt-unicode.
|
||||
|
||||
Uses following perl extensions:
|
||||
|
||||
* Clickable URLs
|
||||
* Simple Tabbing
|
||||
|
||||
## Installation
|
||||
|
||||
Create a symlink for `.Xresources`
|
||||
|
||||
`ln -s ~/.dotfiles/urxvt/xresources ~/.Xresources`
|
||||
|
||||
## Daemon
|
||||
|
||||
[Startup][url-daemon] with `urxvtd -q -o -f`
|
||||
|
||||
[url-daemon]:https://wiki.archlinux.org/index.php/Rxvt-unicode/Tips_and_tricks#Daemon-client
|
36
urxvt/xresources
Normal file
36
urxvt/xresources
Normal file
|
@ -0,0 +1,36 @@
|
|||
! Colours
|
||||
URxvt.background: #272822
|
||||
URxvt.foreground: #f8f8f2
|
||||
URxvt.color0: #272822
|
||||
URxvt.color1: #f92672
|
||||
URxvt.color2: #a6e22e
|
||||
URxvt.color3: #f4bf75
|
||||
URxvt.color4: #66d9ef
|
||||
URxvt.color5: #ae81ff
|
||||
URxvt.color6: #a1efe4
|
||||
URxvt.color7: #f8f8f2
|
||||
URxvt.color8: #75715e
|
||||
URxvt.color9: #f92672
|
||||
URxvt.color10: #a6e22e
|
||||
URxvt.color11: #f4bf75
|
||||
URxvt.color12: #66d9ef
|
||||
URxvt.color13: #ae81ff
|
||||
URxvt.color14: #a1efe4
|
||||
URxvt.color15: #f9f8f5
|
||||
|
||||
! Font
|
||||
URxvt.font: xft:DejaVu Sans Mono:size=10:antialias=true:hinting=true
|
||||
|
||||
! Tighter letter spacing
|
||||
URxvt.letterSpace: -1
|
||||
|
||||
! Remove internal border
|
||||
URxvt.scrollBar: false
|
||||
|
||||
! Remove scroll bar
|
||||
URxvt.internalBorder: 0
|
||||
|
||||
! Perl Extensions: Clickable URLs + Simple Tabs
|
||||
URxvt.perl-ext-common: default,matcher,tabbed
|
||||
URxvt.url-launcher: /usr/bin/xdg-open
|
||||
URxvt.matcher.button: 1
|
Loading…
Reference in a new issue