NOTE: This was unintentionally squashed so some details were lost * Major updates to build_linux to support the current archiso scripts * Most customize_airootfs.sh code has been moved elsewhere * Using static files or links where possible * Generating other files as needed in build_linux * Syslinux configuration has been simplified * Dropped i3 * Dropped rxvt-unicode in favor of termite * Font rendering broke one too many times * Dropped NetworkManager in favor of iwd/systemd-networkd
21 lines
598 B
Bash
21 lines
598 B
Bash
setterm -blank 0 -powerdown 0 2>/dev/null
|
|
if [ "$(fgconsole 2>/dev/null)" -eq "1" ]; then
|
|
# Connect to network and update hostname
|
|
"${HOME}/.update_network"
|
|
|
|
# Start X or HW-diags
|
|
if ! fgrep -q "nox" /proc/cmdline; then
|
|
# Show freeze warning
|
|
echo ""
|
|
echo "NOTE: Not all GPUs/displays are supported."
|
|
echo " If the system is frozen on this screen"
|
|
echo " please restart and try CLI mode instead"
|
|
echo ""
|
|
|
|
# Start x
|
|
echo "Starting X..."
|
|
startx >/dev/null 2>&1
|
|
else
|
|
hw-diags --cli
|
|
fi
|
|
fi
|