mirror of
https://abf.rosa.ru/djam/calamares.git
synced 2025-02-23 15:42:49 +00:00
12 lines
382 B
Bash
12 lines
382 B
Bash
#!/bin/sh
|
|
# tpgxyz@gmail.com
|
|
|
|
if grep -q '\bsystemd.unit=calamares.target\b' /proc/cmdline; then
|
|
if [ -x /usr/bin/startx ] && [ -x /usr/sbin/calamares-install-setup ]; then
|
|
/usr/bin/startx /usr/sbin/calamares-install-setup $* -- -dpi 96 vt1 -background none
|
|
else
|
|
echo "calamares-install-setup: critical programs are missing, check you system!"
|
|
sleep 30
|
|
reboot
|
|
fi
|
|
fi
|