Created
April 8, 2024 23:45
-
-
Save MacaylaMarvelous81/4515311629ae59da742731d4730779cc to your computer and use it in GitHub Desktop.
Resize window for serial console automatically
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
echo -ne '\e[s\e[5000;5000H' | |
IFS='[;' read -p $'\e[6n' -d R -a pos -rs | |
echo -ne '\e[u' | |
stty cols "${pos[2]}" rows "${pos[1]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment