6
  • Xubuntu 13.10

I would like to have xfce4-terminal appear automatically after logging in. I would like to have this instance of the terminal have 3 tabs, the first one being title htop, the second one titled man and the last one titled Stuff.

Example:

enter image description here

Is that possible?

henry
  • 2,175

1 Answers1

7
  1. Run xfce4-session-settings → Application Autostart → Add
  2. Put a name and a description (optional), then add this command:

    xfce4-terminal -T htop -e htop --tab -T man --tab -T Stuff
    

    or with sudo htop so it just wait for your password:

    xfce4-terminal -T htop -e "sudo htop" --tab -T man --tab -T Stuff
    
    • --tab create new tab
    • -T Title
    • -e execute command

References:

user.dz
  • 49,295
  • 1
    Excellent answer! Referenced here: https://superuser.com/questions/471517/how-can-i-save-my-multiple-tabs-session-in-an-xfce4-terminal/1308157#1308157 – Victoria Stuart Mar 26 '18 at 21:46