9 lines
217 B
Bash
9 lines
217 B
Bash
#!/bin/bash
|
|
NO_FORMAT="\e[0m"
|
|
C_RED="\e[38;5;9m"
|
|
if [ "$UID" -ne 0 ]; then
|
|
echo -e "${C_RED}This script must be run as root.${NO_FORMAT}"
|
|
exit 1
|
|
fi
|
|
systemctl start backtotty &&
|
|
sh /opt/scripts/initialisegui.sh |