16 lines
690 B
Bash
16 lines
690 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f ~/.config/autostart/first-boot.desktop ]; then
|
|
rm ~/.config/autostart/first-boot.desktop
|
|
fi
|
|
|
|
if type qvm-run &> /dev/null; then
|
|
mkdir -p "$HOME/.local"
|
|
qvm-run --pass-io sys-firewall '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
|