enable windows super keys on console by default

This commit is contained in:
Tobias Powalowski 2023-08-28 09:28:41 +02:00
parent 884ec359fd
commit 3e9204da66

View file

@ -164,9 +164,10 @@ if [[ -e /usr/bin/setup ]]; then
_local_mode _local_mode
# wait on user interaction! # wait on user interaction!
_enter_shell _enter_shell
# enable super keys console support
loadkeys windowkeys
# Basic Setup on archboot: # Basic Setup on archboot:
# localization, network, clock, pacman # localization, network, clock, pacman
if grep -qw 'archboot' /etc/hostname; then
if ! [[ -e /.localize ]]; then if ! [[ -e /.localize ]]; then
localize localize
source /etc/locale.conf source /etc/locale.conf
@ -183,7 +184,6 @@ if [[ -e /usr/bin/setup ]]; then
if [[ ! -e /.launcher ]]; then if [[ ! -e /.launcher ]]; then
launcher launcher
fi fi
fi
# latest image, fail if less than 2GB RAM available # latest image, fail if less than 2GB RAM available
elif [[ "$(grep -w MemTotal /proc/meminfo | cut -d ':' -f2 | sed -e 's# ##g' -e 's#kB$##g')" -lt 1970000 ]]; then elif [[ "$(grep -w MemTotal /proc/meminfo | cut -d ':' -f2 | sed -e 's# ##g' -e 's#kB$##g')" -lt 1970000 ]]; then
_welcome _welcome