From 1e6605570a1e0ed3c05ba2097d5d852c46091eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Fri, 29 Mar 2024 10:56:28 -0700 Subject: [PATCH] Make startup icons --- data/applications.gresource.xml | 4 + data/startup-32.svg | 184 ++++++++++++++++++++++++++ data/startup-48.svg | 228 ++++++++++++++++++++++++++++++++ src/Plug.vala | 2 +- src/Startup/Startup.vala | 2 +- 5 files changed, 418 insertions(+), 2 deletions(-) create mode 100644 data/startup-32.svg create mode 100644 data/startup-48.svg diff --git a/data/applications.gresource.xml b/data/applications.gresource.xml index 067e48d6..ce573071 100644 --- a/data/applications.gresource.xml +++ b/data/applications.gresource.xml @@ -2,5 +2,9 @@ background.svg + startup-32.svg + startup-32.svg + startup-48.svg + startup-48.svg diff --git a/data/startup-32.svg b/data/startup-32.svg new file mode 100644 index 00000000..036380f7 --- /dev/null +++ b/data/startup-32.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/data/startup-48.svg b/data/startup-48.svg new file mode 100644 index 00000000..6c0afdb1 --- /dev/null +++ b/data/startup-48.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/src/Plug.vala b/src/Plug.vala index 4580f43b..950ec082 100644 --- a/src/Plug.vala +++ b/src/Plug.vala @@ -22,7 +22,7 @@ public class ApplicationsPlug : Switchboard.Plug { private const string DEFAULTS = "preferences-system"; - private const string STARTUP = "system-restart"; + private const string STARTUP = "preferences-desktop-startup"; private const string PERMISSIONS = "permissions"; private Gtk.Grid grid; diff --git a/src/Startup/Startup.vala b/src/Startup/Startup.vala index 95403d6d..55973111 100644 --- a/src/Startup/Startup.vala +++ b/src/Startup/Startup.vala @@ -14,7 +14,7 @@ public class Startup.Plug : Switchboard.SettingsPage { public Plug () { Object ( title: _("Startup"), - icon: new ThemedIcon ("system-restart") + icon: new ThemedIcon ("preferences-desktop-startup") ); }