Added custom plymouth theme and added utilities for getting system info

This commit is contained in:
Bram Prieshof
2022-09-22 16:05:43 +02:00
parent bd1b77c19e
commit 9558763a42
11 changed files with 66 additions and 5 deletions

View File

@@ -0,0 +1 @@
Assessment-Kiosk

2
config/includes.chroot/etc/plymouth/plymouthd.conf Normal file → Executable file
View File

@@ -1,2 +1,2 @@
[Daemon]
Theme=tribar
Theme=simple-image

4
config/includes.chroot/etc/skel/.bashrc Normal file → Executable file
View File

@@ -21,9 +21,7 @@ NetCheck
while [[ "$Net" = "false" ]]; do
read -p "Network could not be initialized, Try again (y/n) " yn
case $yn in
[yY]* )
NetCheck
break;;
[yY]* ) NetCheck;;
[Nn]* ) break;;
* ) echo invalid response;;
esac