Difference between revisions of "Urxvt"
imported>Ackthet (→Configuring Urxvt) |
imported>Ackthet (→Configuring Urxvt) |
||
| Line 3: | Line 3: | ||
=Configuring Urxvt= | =Configuring Urxvt= | ||
Urxvt is configured though X resource database manager (xrdb). Settings for rxdb are usually in [[.Xdefaults]]. | Urxvt is configured though X resource database manager (xrdb). Settings for rxdb are usually in [[.Xdefaults]]. | ||
| + | |||
| + | Here are some options: | ||
| + | |||
| + | ;URxvt.bakground | ||
| + | :Set the background color | ||
| + | ;URxvt.foreground | ||
| + | :Set the foregroud colo | ||
| + | ;URxvt.geometry | ||
| + | :set the terminal size | ||
| + | ;URxvt.saveLines | ||
| + | :Set how many lines in the buffer | ||
| + | ;URxvt.scrollBar | ||
| + | :Turn the scrollbar on or off (Set to eitehr true or false) | ||
| + | <!-- URxvt.scrollstyle: plain | ||
| + | |||
| + | URxvt.print-pipe: cat > $(TMPDIR=$HOME mktemp urxvt.XXXXX) | ||
| + | /* places a hardcopy in home dir when print is pressed */ | ||
| + | |||
| + | URxvt.termname: rxvt /* -tn: sets $TERM */ | ||
| + | URxvt*secondaryScroll: true | ||
| + | URxvt.font: xft:Terminus:pixelsize=12:antialias=true | ||
| + | URxvt.transparent: true /* replaces inheritPixmap */ | ||
| + | |||
| + | URxvt.perl-ext-common: default,selection,matcher,searchable-scrollback<M-s>/ | ||
| + | /* default: load default perl extensions | ||
| + | * selection: intelligent selection (words, urls) | ||
| + | * matcher: underlines matched text and executes program upon click | ||
| + | * searchable-scro...: adds regex search to scrollback buffer */ | ||
| + | URxvt*matcher.button: 1 /* match left-mouse-button */ | ||
| + | URxvt*urlLauncher: firefox /* launch firefox on matched text */ | ||
| + | URxvt.shading: 40 --> | ||
Revision as of 01:33, 18 November 2009
Urxvt is a lightweight terminal emulator.
Configuring Urxvt
Urxvt is configured though X resource database manager (xrdb). Settings for rxdb are usually in .Xdefaults.
Here are some options:
- URxvt.bakground
- Set the background color
- URxvt.foreground
- Set the foregroud colo
- URxvt.geometry
- set the terminal size
- URxvt.saveLines
- Set how many lines in the buffer
- URxvt.scrollBar
- Turn the scrollbar on or off (Set to eitehr true or false)