We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddea7a8 + fa09308 commit 1228374Copy full SHA for 1228374
instructors/terminal.sh
@@ -144,4 +144,11 @@ tmux resize-pane -t "${LOG_PANE}" -y "${LOG_PANE_HEIGHT}"
144
# seem to cause any harm.
145
tmux set-option -t "${WINDOW}" -q -w status off
146
147
-tmux attach-session -t "${SESSION}"
+# Allow a scaled terminal to be launched
148
+if [ "$arg" == "--big" ] || [ "$arg" == "-b" ]; then
149
+ st -f "monospace:size=28" -e tmux attach-session -t "${SESSION}"
150
+ break
151
+else
152
+ tmux attach-session -t "${SESSION}"
153
+fi
154
+
0 commit comments