Difference between revisions of "Urxvt"
imported>Ackthet (→Configuring Urxvt) |
(Undo revision 1330 by [[Special:Contributions/imported>Pew|imported>Pew]] ([[User talk:imported>Pew|talk]])) (Tag: Undo) |
||
(12 intermediate revisions by 6 users not shown) | |||
Line 2: | Line 2: | ||
=Configuring Urxvt= | =Configuring Urxvt= | ||
− | Urxvt is configured though X resource database manager (xrdb). Settings for | + | Urxvt is configured though X resource database manager (xrdb). Settings for xrdb are usually in .Xdefault (sdeprecated) or .Xresources. |
+ | |||
+ | Here are some options: | ||
+ | |||
+ | ;URxvt.bakground | ||
+ | :Set the background color | ||
+ | ;URxvt.foreground | ||
+ | :Set the foregroud color | ||
+ | ;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 either 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 --> | ||
+ | |||
+ | [[Category:Software]] |
Latest revision as of 06:41, 4 January 2019
Urxvt is a lightweight terminal emulator.
Configuring Urxvt
Urxvt is configured though X resource database manager (xrdb). Settings for xrdb are usually in .Xdefault (sdeprecated) or .Xresources.
Here are some options:
- URxvt.bakground
- Set the background color
- URxvt.foreground
- Set the foregroud color
- 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 either true or false.)