Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beangreen247/my-rxvt-config
My configuration for the rxvt terminal. My new favorite terminal.
https://github.com/beangreen247/my-rxvt-config
beangreen247 colors config debian linux opensource rxvt rxvt-terminal ubuntu xresouces
Last synced: 15 days ago
JSON representation
My configuration for the rxvt terminal. My new favorite terminal.
- Host: GitHub
- URL: https://github.com/beangreen247/my-rxvt-config
- Owner: BeanGreen247
- Created: 2019-12-02T19:28:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T14:13:25.000Z (almost 4 years ago)
- Last Synced: 2024-12-24T03:50:26.207Z (18 days ago)
- Topics: beangreen247, colors, config, debian, linux, opensource, rxvt, rxvt-terminal, ubuntu, xresouces
- Homepage:
- Size: 1.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My-rxvt-config
My configuration for the rxvt terminal
![What it looks like](https://raw.githubusercontent.com/BeanGreen247/My-rxvt-config/master/screen.png)## Installation
To install rxvt run
```bash
sudo pacman -S rxvt-unicode wget
```
Get the config and apply it
```bash
wget -O ~/.Xresources https://raw.githubusercontent.com/BeanGreen247/dotfiles/master/rxvt/Xresources
sudo xrdb -merge ~/.Xresources
```
## The config
```bash
URxvt.clipboard.autocopy: true
URxvt.scrollBar: false
URxvt.saveLines:10000
URxvt.font: xft:Monospace:size=12
URxvt.geometry: 100x35
URxvt.letterSpace: -1! special
*.foreground: #919191
*.background: #000000
*.cursorColor: #919191! black
*.color0: #303030
*.color8: #5e5e5e! red
*.color1: #c10023
*.color9: #ff8781! green
*.color2: #a83334
*.color10: #ffa095! yellow
*.color3: #b51d2c
*.color11: #ff948b! blue
*.color4: #8c4b46
*.color12: #feb2aa! magenta
*.color5: #7d534f
*.color13: #ebbbb5! cyan
*.color6: #9a413d
*.color14: #ffaaa0! white
*.color7: #c6c6c6
*.color15: #ffffff!! Common Keybinds for Navigations
URxvt.keysym.Shift-Up: command:\033]720;1\007
URxvt.keysym.Shift-Down: command:\033]721;1\007
URxvt.keysym.Control-Up: \033[1;5A
URxvt.keysym.Control-Down: \033[1;5B
URxvt.keysym.Control-Right: \033[1;5C
URxvt.keysym.Control-Left: \033[1;5D!! Copy Paste & Other Extensions
URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select
URxvt.copyCommand: xclip -i -selection clipboard
URxvt.pasteCommand: xclip -o -selection clipboard
URxvt.keysym.M-c: perl:clipboard:copy
URxvt.keysym.M-v: perl:clipboard:paste
URxvt.keysym.M-C-v: perl:clipboard:paste_escaped
URxvt.keysym.M-Escape: perl:keyboard-select:activate
URxvt.keysym.M-s: perl:keyboard-select:search
URxvt.keysym.M-u: perl:url-select:select_next
URxvt.urlLauncher: google-chrome-stable
URxvt.underlineURLs: true
URxvt.urlButton: 1
```