tmux/splitHP

24 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#### Session --------------------------------------------------------------
# -sX : numéro de la session
# -nNOM_TERMINAL : nom du terminal
# -d : indique à tmux de ne pas attacher la session et de ne pas prendre les
# nouvelles fenêtres comme une fenêtre courante
# -tX:Y : modifier les paramètres de la fenêtre Y de la session X. !Attention
# la fenêtre doit exister avant de pouvoir modifier ses paramètres!
# monitor-activity : permet de mettre en avant une fenêtre quand son contenu reçoit un événement
# 'exec ${SHELL}': Allow to keep the pane running after the program exists
# New session with first window in ~
new -A -stoto -nmail 'mutt ; exec ${SHELL}'
splitw -h -p 50 -t 1 'sudo aptitude update ; sudo aptitude full-upgrade ; exec ${SHELL}'
# New window toto:1 with htop (refresh every minute)
neww -d -nht0p 'exec htop -d 600 ; exec ${SHELL}'
# New window toto:2 for remote weechat
neww -d -nw33 -c 'weechat ; exec ${SHELL}'
# New window toto:3 for git repositories
neww -d -ngit -c '/home/jegardai/repos'
# Default window: toto:3
select-window -t 3