From 917f229e2accb53232e7d6f710f2cef6bf541715 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 23 May 2022 15:38:53 +0200 Subject: [PATCH] try to fix locale for gnome-terminal --- usr/lib/archboot/gnome.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/gnome.sh b/usr/lib/archboot/gnome.sh index 8d1a1dd5c..4199fab53 100644 --- a/usr/lib/archboot/gnome.sh +++ b/usr/lib/archboot/gnome.sh @@ -33,7 +33,7 @@ _start_gnome() { echo -e "Launching GNOME now, logging is done on \033[1m/dev/tty8\033[0m ..." echo "export XDG_SESSION_TYPE=x11" > /root/.xinitrc echo "export GDK_BACKEND=x11" >> /root/.xinitrc - echo "export LANG=C.UTF-8" + echo "export LANG=C.UTF-8" >> /root/.xinitrc echo "exec dbus-launch gnome-session" >> /root/.xinitrc startx >/dev/tty8 2>&1 echo -e "To relaunch GNOME desktop use: \033[92mstartx\033[0m"