From cc17c3fb420cc68a1653a7abcc852bd9ff131a36 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Apr 2026 23:18:39 +0000 Subject: [PATCH] Remove PDF mention, icon, and fix reboot button color in push_complete Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/3bb82d50-1a0b-4f1d-b186-1e4efde002d1 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- iso/installer.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/iso/installer.py b/iso/installer.py index 0471826..969cc3f 100644 --- a/iso/installer.py +++ b/iso/installer.py @@ -927,7 +927,6 @@ class InstallerWindow(Adw.ApplicationWindow): status = Adw.StatusPage() status.set_title("Installation Complete!") status.set_description("Welcome to Sovran SystemsOS.") - status.set_icon_name("emblem-ok-symbolic") status.set_vexpand(True) creds_group = Adw.PreferencesGroup() @@ -949,7 +948,7 @@ class InstallerWindow(Adw.ApplicationWindow): note_row.set_title("App Passwords") note_row.set_subtitle( "After rebooting, all app passwords (Nextcloud, Bitcoin, Matrix, etc.) " - "will be saved to a secure PDF in your Documents folder." + "will be available in the Sovran Hub on your dashboard." ) creds_group.add(note_row) @@ -959,9 +958,8 @@ class InstallerWindow(Adw.ApplicationWindow): outer.append(content_box) reboot_btn = Gtk.Button(label="Reboot Now") - reboot_btn.add_css_class("suggested-action") + reboot_btn.add_css_class("success") reboot_btn.add_css_class("pill") - reboot_btn.add_css_class("destructive-action") reboot_btn.connect("clicked", lambda b: subprocess.run(["sudo", "reboot"])) nav = Gtk.Box()