Change: Minimum size changed from 80x25 to 80x24
parent
e16403f3b2
commit
c9e0fa53f4
8
bashtop
8
bashtop
|
@ -287,8 +287,8 @@ init_() { #? Collect needed information and set options before startig main loop
|
||||||
unset 'proc[reverse]'
|
unset 'proc[reverse]'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#* Wait for resize if terminal size is smaller then 80x25
|
#* Wait for resize if terminal size is smaller then 80x24
|
||||||
if (($tty_width<80 | $tty_height<25)); then resized; fi
|
if (($tty_width<80 | $tty_height<24)); then resized; fi
|
||||||
|
|
||||||
#* Calculate sizes of boxes
|
#* Calculate sizes of boxes
|
||||||
calc_sizes
|
calc_sizes
|
||||||
|
@ -470,7 +470,7 @@ resized() { #? Get new terminal size if terminal is resized
|
||||||
unset winches
|
unset winches
|
||||||
while ((++winches<5)); do
|
while ((++winches<5)); do
|
||||||
read tty_height tty_width < <(stty size)
|
read tty_height tty_width < <(stty size)
|
||||||
if (($tty_width<80 | $tty_height<25)); then
|
if (($tty_width<80 | $tty_height<24)); then
|
||||||
size_error_msg
|
size_error_msg
|
||||||
winches=0
|
winches=0
|
||||||
else
|
else
|
||||||
|
@ -488,7 +488,7 @@ size_error_msg() { #? Shows error message if terminal size is below 80x25
|
||||||
tput clear
|
tput clear
|
||||||
create_box -full -lc "#EE2020" -title "resize window"
|
create_box -full -lc "#EE2020" -title "resize window"
|
||||||
print -rs -m $((tty_height/2-1)) 2 -fg ${theme[title]} -c -l 11 "Current size: " -bg "#00" -fg dd2020 -d 1 -c "${tty_width}x${tty_height}" -rs
|
print -rs -m $((tty_height/2-1)) 2 -fg ${theme[title]} -c -l 11 "Current size: " -bg "#00" -fg dd2020 -d 1 -c "${tty_width}x${tty_height}" -rs
|
||||||
print -d 1 -fg ${theme[title]} -c -l 15 "Need to be atleast:" -bg "#00" -fg 30dd50 -d 1 -c "80x25" -rs
|
print -d 1 -fg ${theme[title]} -c -l 15 "Need to be atleast:" -bg "#00" -fg 30dd50 -d 1 -c "80x24" -rs
|
||||||
while [[ $(stty size) == "$tty_height $tty_width" ]]; do sleep 0.2; done
|
while [[ $(stty size) == "$tty_height $tty_width" ]]; do sleep 0.2; done
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue