From 9e6c46893ebbd039b57ba171d5af452be37fb64f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 12 Jun 2021 12:50:23 +0200 Subject: [PATCH] Start offlineimap in main tmux view It's good to have this synchronization going on and being visible in the main tmux dashboard. --- config/bash/scripts.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/bash/scripts.sh b/config/bash/scripts.sh index 3fbcbeb..779d075 100755 --- a/config/bash/scripts.sh +++ b/config/bash/scripts.sh @@ -35,6 +35,9 @@ function tmux-main() { tmux new-session -d -A -s main \; \ send-keys 'journalctl --follow' ENTER \; \ split-window \; \ + send-keys 'offlineimap' ENTER \; \ + split-window \; \ send-keys 'htop -t' ENTER \; \ + select-layout even-vertical \; \ attach-session -t main }