forked from pwaller/pyfiglet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.sh
executable file
·76 lines (53 loc) · 2.31 KB
/
tmux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
# Use `just tmux` to set permissions and run this script.
# This script is designed for a terminal that is maximized on a wide screen.
# It will, with a single command:
# - Starts a new tmux session (or uses current one if already in tmux)
# - Splits the window horizontally (left and right panes)
# - Adjusts the width of the panes to be roughly 2/3 and 1/3 of the screen
# - Runs the textual dev console on the right (small) side
# - Runs the textual app on the left (large) side in dev mode
# - Focuses on the left pane so that the app starts focused
# - Attaches to the tmux session if not already in one
if [ -n "$TMUX" ]; then
CURRENT_WINDOW=$(tmux display-message -p '#I')
Create a new window in the current session
tmux new-window
# Get new window id
NEW_WINDOW=$(tmux display-message -p '#I')
# Rename the new window
tmux rename-window -t :$NEW_WINDOW 'Main'
# Split the window horizontally
tmux split-window -h
# Resize the right pane to roughly 1/3 of screen width
tmux resize-pane -t :$NEW_WINDOW.1 -x 45
# Send keys to the right pane (console)
tmux send-keys -t :$NEW_WINDOW.1 'just console' C-m
# Wait for console to boot
sleep 2
# Send keys to the left pane (app)
tmux send-keys -t :$NEW_WINDOW.0 'just run-dev' C-m
# Select left pane to focus on the app
tmux select-pane -t :$NEW_WINDOW.0
else
# Not inside tmux, create a new session
# Start a new tmux session named "textual_session"
# -d is for detached mode, -s is for session name 'textual_session_1'
tmux new-session -d -s textual_session_1
# Rename the first window
tmux rename-window -t textual_session_1:0 'Main'
# Split the window horizontally
tmux split-window -h
# Resize the right pane to roughly 1/3 of screen width
tmux resize-pane -t textual_session_1:0.1 -x 7
# Send keys to the right pane (console)
tmux send-keys -t textual_session_1:0.1 'just console' C-m
# Wait for console to boot
sleep 2
# Send keys to the left pane (app)
tmux send-keys -t textual_session_1:0.0 'just run-dev' C-m
# Select left pane to focus on the app
tmux select-pane -t textual_session_1:0.0
# Attach to the new session
tmux attach-session -t textual_session_1
fi