Created
October 16, 2021 10:34
-
-
Save buxtonpaul/5f37cc7b8f46e0c89a52f979bca3e644 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if tmux a -t default_session | |
then | |
echo Session connected and exitied gracefully | |
else | |
tmux new-session -s 'default_session' -d 'bpytop' | |
tmux rename-window 'System' | |
tmux new-window -d 'mc' | |
tmux select-window -t :=2 | |
tmux rename-window 'Files' | |
tmux new-window -d | |
tmux select-window -t :=3 | |
tmux -2 attach -d | |
echo Session started and exited gracefully | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment