We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da10be commit 5aa39c9Copy full SHA for 5aa39c9
install/preflight/guard.sh
@@ -18,6 +18,9 @@ done
18
# Must be x86 only to fully work
19
[ "$(uname -m)" != "x86_64" ] && abort "x86_64 CPU"
20
21
+# Must have secure boot disabled
22
+bootctl status 2>/dev/null | grep -q 'Secure Boot: disabled' || abort "Secure Boot disabled"
23
+
24
# Must not have Gnome or KDE already install
25
pacman -Qe gnome-shell &>/dev/null && abort "Fresh + Vanilla Arch"
26
pacman -Qe plasma-desktop &>/dev/null && abort "Fresh + Vanilla Arch"
0 commit comments