From 9440b1a43ad17739b34e672bc0378da1a2624da5 Mon Sep 17 00:00:00 2001 From: stsdc <6031763+stsdc@users.noreply.github.com> Date: Fri, 25 Mar 2022 19:10:57 +0100 Subject: [PATCH] add 16x16 and 48x48 bash icons --- data/icons/bash-monochrome-dark.svg | 50 ----- data/icons/extra/16/bash.svg | 188 ++++++++++++++++++ data/icons/extra/48/bash.svg | 232 +++++++++++++++++++++++ data/icons/icons.indicator.gresource.xml | 4 +- src/Managers/ProcessUtils.vala | 2 +- 5 files changed, 424 insertions(+), 52 deletions(-) delete mode 100644 data/icons/bash-monochrome-dark.svg create mode 100644 data/icons/extra/16/bash.svg create mode 100644 data/icons/extra/48/bash.svg diff --git a/data/icons/bash-monochrome-dark.svg b/data/icons/bash-monochrome-dark.svg deleted file mode 100644 index 8520465b..00000000 --- a/data/icons/bash-monochrome-dark.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - diff --git a/data/icons/extra/16/bash.svg b/data/icons/extra/16/bash.svg new file mode 100644 index 00000000..e03819e6 --- /dev/null +++ b/data/icons/extra/16/bash.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + $ + + + + + + diff --git a/data/icons/extra/48/bash.svg b/data/icons/extra/48/bash.svg new file mode 100644 index 00000000..29226e72 --- /dev/null +++ b/data/icons/extra/48/bash.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/data/icons/icons.indicator.gresource.xml b/data/icons/icons.indicator.gresource.xml index a62aaf5f..b0bf002f 100644 --- a/data/icons/icons.indicator.gresource.xml +++ b/data/icons/icons.indicator.gresource.xml @@ -6,6 +6,8 @@ swap-symbolic.svg file-deleted-symbolic.svg temperature-sensor-symbolic.svg - bash-monochrome-dark.svg + extra/16/bash.svg + extra/48/bash.svg + \ No newline at end of file diff --git a/src/Managers/ProcessUtils.vala b/src/Managers/ProcessUtils.vala index 6a4aa135..8f7a5f7b 100644 --- a/src/Managers/ProcessUtils.vala +++ b/src/Managers/ProcessUtils.vala @@ -60,6 +60,6 @@ public class Monitor.ProcessUtils { } public static Icon ? get_bash_icon () { - return new ThemedIcon ("bash-monochrome-dark"); + return new ThemedIcon ("bash"); } }