20 lines
883 B
Bash
20 lines
883 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f /etc/lightdm/lightdm.conf.bak ]; then
|
|
sudo mv /etc/lightdm/lightdm.conf.bak /etc/lightdm/lightdm.conf
|
|
fi
|
|
|
|
if [ -f ~/.config/autostart/first-boot.desktop ]; then
|
|
rm ~/.config/autostart/first-boot.desktop
|
|
fi
|
|
|
|
if type qvm-run &> /dev/null; then
|
|
qvm-create --label red --template debian-11 provision &> /dev/null || EXIT_CODE=$?
|
|
qvm-run --pass-io provision "mkdir -p ~/.local && curl -sSL https://install.doctor/qubes" > "$HOME/.local/setup.sh" && bash "$HOME/.local/setup.sh"
|
|
elif [ -d '/Applications' ] && [ -d '/Users' ] && [ -d '/Library' ]; then
|
|
mkdir -p "$HOME/.local"
|
|
curl -sSL https://install.doctor/quickstart > "$HOME/.local/setup.sh" && bash "$HOME/.local/setup.sh"
|
|
elif [ -f '/etc/os-release' ]; then
|
|
mkdir -p "$HOME/.local"
|
|
curl -sSL https://install.doctor/quickstart > "$HOME/.local/setup.sh" && bash "$HOME/.local/setup.sh"
|
|
fi
|