6 Commits
0.8.6 ... 0.9

Author SHA1 Message Date
186c4cc944 check for neofetch 2020-07-26 16:29:42 +02:00
36b3def4df Merge pull request 'set branding' (#4) from neo into master 2020-07-26 16:27:49 +02:00
bff662b2bb remeove s6 pacman-init dependencies file 2020-07-26 16:26:06 +02:00
6a830fd09e Merge pull request 'pacman-init: make sure /etc/pacman.d/gnupg exists' (#5) from s6-fix into master 2020-03-21 19:49:51 +01:00
f1a229a2b2 pacman-init: make sure /etc/pacman.d/gnupg exists
Noticed that this directory may not exist so the mount fails.
2020-01-17 22:33:28 -06:00
8163c1574f set branding 2019-12-23 21:23:28 +01:00
4 changed files with 9 additions and 2 deletions

View File

@@ -32,4 +32,5 @@ echo "Configured accountsservice" >> "${LOGFILE}"
configure_displaymanager
echo "Configured displaymanager" >> "${LOGFILE}"
configure_branding
echo "Configured branding" >> "${LOGFILE}"

View File

@@ -1 +0,0 @@
haveged

View File

@@ -1,4 +1,5 @@
#!/usr/bin/execlineb -P
foreground { mkdir -p /etc/pacman.d/gnupg }
foreground { mount -t tmpfs -o size=10M,mode=0755 tmpfs /etc/pacman.d/gnupg }
fdmove -c 2 1
foreground { pacman-key --init }

View File

@@ -244,6 +244,12 @@ configure_swap(){
fi
}
configure_branding(){
if [[ -f /usr/bin/neofetch ]]; then
neofetch >| /etc/issue
fi
}
configure_user(){
local user="$1"
if [[ "$user" == 'root' ]];then