Make setup ISO-only

Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
This commit is contained in:
Ryan Hughes
2026-06-04 18:37:32 -04:00
parent b45e8464ef
commit 75cb4f7195
440 changed files with 790 additions and 4922 deletions
+3
View File
@@ -0,0 +1,3 @@
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
gsettings set org.gnome.desktop.interface icon-theme "Yaru-blue"
@@ -0,0 +1 @@
gsettings set org.gnome.desktop.interface gtk-enable-primary-paste true
@@ -0,0 +1,12 @@
#!/bin/bash
set -e
(
if [[ -n $(omarchy-notification-send -u critical -g  "Install Dictation with Voxtype" "Click to install voice dictation for Omarchy." -a) ]]; then
omarchy-launch-floating-terminal-with-presentation omarchy-voxtype-install
fi
) >/dev/null 2>&1 &
# Remove this hook after scheduling the background notification action.
rm -f "$0"
+5
View File
@@ -0,0 +1,5 @@
(
if [[ -n $(omarchy-notification-send -u critical -g  "Learn Keybindings" "Super + K for cheatsheet.\nSuper + Space for application launcher.\nSuper + Alt + Space for Omarchy Menu." -a) ]]; then
omarchy-menu-keybindings
fi
) >/dev/null 2>&1 &
+22
View File
@@ -0,0 +1,22 @@
notify_update() {
(
if [[ -n $(omarchy-notification-send -u critical -g  "Update System" "$1" -a) ]]; then
omarchy-launch-floating-terminal-with-presentation omarchy-update
fi
) >/dev/null 2>&1 &
}
notify_wifi() {
(
if [[ -n $(omarchy-notification-send -u critical -g 󰖩 "Click to Setup Wi-Fi" -a) ]]; then
omarchy-shell omarchy.network toggle
fi
) >/dev/null 2>&1 &
}
if ! ping -c3 -W1 1.1.1.1 >/dev/null 2>&1; then
notify_update "When you have internet, click to update the system."
notify_wifi
else
notify_update "Click to update the system."
fi