Add meta window layout that automatically chooses split

This commit is contained in:
Kenneth Benzie 2024-04-12 20:57:55 +01:00
parent 905460fee4
commit 7bc20823de
2 changed files with 29 additions and 0 deletions

28
layouts/window-auto Executable file
View File

@ -0,0 +1,28 @@
#!/usr/bin/env zsh
cols=`tput cols`
lines=`tput lines`
width=$(( $cols / 2 )).0
height=$lines.0
ratio=$(( ($width / $height) * 100 ))
# echo "size: ( $width,$height ) ratio: $ratio"
if [[ $cols -lt 140 ]] && [[ $lines -lt 70 ]]; then
# terminal is too small
exit
fi
if [[ $ratio -ge 100 ]]; then
# terminal is wide or square
if [[ `tput cols` -gt 230 ]]; then
# terminal is wide and large
`dirname $0`/window-wide-right
else
# terminal is wide and small
tmux split-window -h -l 50%
fi
else
# terminal is tall
`dirname $0`/window-tall
fi

View File

@ -19,6 +19,7 @@
- session-local
- session-main
- session-visor
- window-auto
- window-tall
- window-wide-left
- window-wide-right