From 5282eb7aaa5f69f5995f901fd7a5332a892a81a4 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Sat, 26 Aug 2023 18:01:50 +0200 Subject: [PATCH] vault backup: 2023-08-26 18:01:50 --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a3361b..acfe6c0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,24 @@ ## First Boot Configuration Changes +### First Login Screen +1. Fill in the normal first-time login screens with your timezone, name, password, etc. It make take some time for this to finish. +### Configure xsessions +This change will allow us to add in 1. Open a terminal then open the transactional-update shell: -``` +```shell sudo transactional-update shell ``` +2. Copy `/usr/share/xsessions` to `/opt/share/xsessions` +```shell +mkdir /opt/share +cp -rv /usr/share/xsessions/ /opt/share/ +``` +3. Delete `/usr/share/xsessions` +```shell +rm -rf /usr/share/xsessions/ +``` +4. Make a symlink from `/opt/share/xsessions` to `/usr/share/xsessions`. +```shell +ln -s /opt/share/xsessions /usr/share/xsessions +```