PINE64
Multi-tabbed terminal emulator - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PINE A64(+) (https://forum.pine64.org/forumdisplay.php?fid=4)
+--- Forum: Linux on Pine A64(+) (https://forum.pine64.org/forumdisplay.php?fid=6)
+--- Thread: Multi-tabbed terminal emulator (/showthread.php?tid=3900)



Multi-tabbed terminal emulator - jhawk - 02-24-2017

Have you ever tried a multi-tabbed terminal? Now might be the time.
Required packages for example:  sudo apt-get install mrxvt htop mc vim

Below .Xdefault addions to make it work

Code:
#    Add to .Xdefaults or save as ~/.Xdefaults
#
########## mrxvt
 mrxvt.xft:1
 mrxvt.xftfont:DejaVu Sans Mono Book
 mrxvt.xftSize:10
 mrxvt.xftAntialias:1
 mrxvt.syncTabTitle:1
 mrxvt.syncTabIcon:1
# mrxvt.protectSecondary:1
#  mrxvt.transparentTabbar:1
#  mrxvt.transparentScrollbar:1
 mrxvt.loginShell:true
 mrxvt.shading:20
 mrxvt.background:#323232
 mrxvt.foreground:White
 mrxvt.scrollColor:Black
 mrxvt.scrollBar:true
 mxvt.transparent:1
 mxvt.transparentForce:0
 mxvt.transparentScrollbar:1
 mxvt.transparentMenubar:1
 mxvt.transparentTabbar:1

 mrxvt.saveLines:32767
 mrxvt.mouseWheelScrollPage:true
 mrxvt.profile0.tabTitle:Terminal
 mrxvt.profile1.command:!htop -u $USER
 mrxvt.profile1.tabTitle:Htop
 mrxvt.profile2.command:!mc -s
 mrxvt.profile2.tabTitle:Midnight
 mrxvt.profile3.command:!vim
 mrxvt.initProfileList:0,1,2,3
 mrxvt.bottomTabbar:false
jhawk


RE: Multi-tabbed terminal emulator - MarkHaysHarris777 - 02-24-2017

The debian and ubuntu distros ( for Pine64 ) have had Mate Terminal from the beginning , which is a tabbed terminal emulator.

Simply click "File" --> Open Tab


RE: Multi-tabbed terminal emulator - jhawk - 02-24-2017

(02-24-2017, 02:00 PM)MarkHaysHarris777 Wrote: The debian and ubuntu distros ( for Pine64 ) have had Mate Terminal from the beginning , which is a tabbed terminal emulator.

Simply click "File" --> Open Tab

I'm a creature of habit, never even looked! My bad.

jhawk