Terminal – Lightweight Replacement for `rxvt-unicode`

rxvtterminalterminal-emulatorunicode

I am currently using rxvt-unicode as a terminal emulator. Since I also like the configurability of terminal emulators from GNOME and KDE, I wonder whether there is some kind of replacement for rxvt-unicode with more features but not as many dependencies as the GNOME or KDE terminals.

Specifically, I am interested in the following:

  • Tabs
  • Font size changes on the fly (via CTRL++ or something similar)
  • UTF-8 support (OK, urxvt already has this, obviously)
  • Possibility to open a new tab/new window at the current directory

Best Answer

No, but: rxvt-unicode has tab support.

Add this to your .Xdefaults/.Xresources:

urxvt.perl-ext-common: default,tabbed

I also like to disable the 'selection' perl extension so that it is possible to triple-click-and-drag to select multiple complete lines (as in xterm). Then your .Xdefaults would look like this:

urxvt.perl-ext-common: default,tabbed,-selection
Related Question