shorten display resolution check

This commit is contained in:
Tobias Powalowski 2023-11-18 21:25:48 +01:00
parent 2c986c4007
commit cb0a1aed3a

View file

@ -1,11 +1,11 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later
#
# archboot-vconsole.sh - sets bigger font on bigger display resolutions
# archboot--detect-vconsole.sh:
# sets bigger font on bigger display resolutions
# by Tobias Powalowski <tpowa@archlinux.org>
#
udevadm settle
FB_SIZE="$(cut -d 'x' -f 1 /sys/class/graphics/fb0/modes 2>/dev/null | sed -e 's#.*:##g')"
FB_SIZE="$(sed -e 's#.*:##g' -e 's#x.*##g' /sys/class/graphics/fb0/modes 2>/dev/null)"
if [[ "${FB_SIZE}" -gt '1900' ]]; then
SIZE="32"
else