Wednesday, January 29, 2020

mrxvt settings that I like

mrxvt is a tabbed VT102 terminal emulator for X Window System. This is like gnome-terminal(GNOME) or konsole(KDE). The good thing with mrxvt is that it is light-weight so this is good for old machine when combined with lighter window managers like fluxbox when running in graphical mode. Below is my .mrxvtrc configuration suites my taste:
# save this to ~/.mrxvtrc
Mrxvt.background: black
Mrxvt.foreground: gray
Mrxvt.cursorColor: yellow
Mrxvt.tabBackground: black
Mrxvt.tabForeground: yellow
Mrxvt.bottomTabbar: True
Mrxvt.scrollbarRight: True
Mrxvt.scrollbarStyle: rxvt
Mrxvt.borderColor: green
Mrxvt.transparent: False
Mrxvt.transparentTabbar: False
Mrxvt.itabBackground: black
Mrxvt.background: black
Mrxvt.foreground: gray
Mrxvt.cursorColor: yellow
Mrxvt.borderColor: green
Mrxvt.transparent: False
Mrxvt.geometry: 100x25
#-------------------------------------------------------------------
#Tabbar related configuration
Mrxvt.tabBackground: black
Mrxvt.tabForeground: yellow
Mrxvt.bottomTabbar: True
Mrxvt.transparentTabbar: False
Mrxvt.itabBackground: #101010
Mrxvt.tabBackground: #000000
Mrxvt.itabForeground: #909090
Mrxvt.tabForeground: #9a9a9a
#seems like not working
Mrxvt.minVisibleTabs: 8
Mrxvt.hideButtons: True
# Number of lines to save in the scroll back buffer for all tabs
Mrxvt.saveLines: 500
# Scroll bar related
Mrxvt.scrollbarRight: True
Mrxvt.scrollbarStyle: rxvt
Mrxvt.scrollColor: #808080
Mrxvt.troughColor: #202020
#
# ---------------------------------- FONTS ----------------------------------- #
#
Mrxvt.font: -*-terminus-*-r-*-*-*-*-*-*-*-*-*-*
Mrxvt.mfont: -*-terminus-*-r-*-*-*-*-*-*-*-*-*-*
Mrxvt.boldFont: -*-terminus-*-r-*-*-*-*-*-*-*-*-*-*
#Mrxvt.xft: 1
#Mrxvt.xftFont: Bitstream Vera Sans Mono
#Mrxvt.xftSize: 10
#Mrxvt.xftAntialias: 1
view raw .mrxvtrc hosted with ❤ by GitHub

Or download this configuration. ~yth~

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...