diff -pruN 4:5.94.0-1/autotests/scalabletest.cpp 4:5.96.0-1/autotests/scalabletest.cpp
--- 4:5.94.0-1/autotests/scalabletest.cpp	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/autotests/scalabletest.cpp	2022-07-02 14:28:29.000000000 +0000
@@ -155,7 +155,7 @@ public:
 
 // Declare so we can put them into the QTest data table.
 Q_DECLARE_METATYPE(KIconLoaderDummy::Context)
-Q_DECLARE_METATYPE(QSharedPointer<Dir>)
+Q_DECLARE_METATYPE(std::shared_ptr<Dir>)
 
 class ScalableTest : public QObject
 {
@@ -167,7 +167,7 @@ private Q_SLOTS:
         for (auto dir : ICON_DIRS) {
             QString themeDir = PROJECT_SOURCE_DIR + QStringLiteral("/") + dir;
 
-            QHash<KIconLoaderDummy::Context, QList<QSharedPointer<Dir>>> contextHash;
+            QHash<KIconLoaderDummy::Context, QList<std::shared_ptr<Dir>>> contextHash;
             QHash<KIconLoaderDummy::Context, QString> contextStringHash;
 
             QSettings config(themeDir + "/index.theme", QSettings::IniFormat);
@@ -187,7 +187,7 @@ private Q_SLOTS:
                              .arg(themeDir + "/index.theme", directoryPath)
                              .toLatin1()
                              .constData());
-                auto dir = QSharedPointer<Dir>::create(config, themeDir);
+                auto dir = std::make_shared<Dir>(config, themeDir);
                 config.endGroup();
                 contextHash[dir->context].append(dir);
                 contextStringHash[dir->context] = (dir->contextString);
@@ -215,7 +215,7 @@ private Q_SLOTS:
                                  .arg(inheritedDir + "/index.theme", path)
                                  .toLatin1()
                                  .constData());
-                    auto dir = QSharedPointer<Dir>::create(inheritedConfig, inheritedDir);
+                    auto dir = std::make_shared<Dir>(inheritedConfig, inheritedDir);
                     inheritedConfig.endGroup();
                     contextHash[dir->context].append(dir);
                     contextStringHash[dir->context] = (dir->contextString);
@@ -224,7 +224,7 @@ private Q_SLOTS:
             config.endGroup();
 
             QTest::addColumn<KIconLoaderDummy::Context>("context");
-            QTest::addColumn<QList<QSharedPointer<Dir>>>("dirs");
+            QTest::addColumn<QList<std::shared_ptr<Dir>>>("dirs");
 
             for (auto key : contextHash.keys()) {
                 if (key != KIconLoaderDummy::Application) {
@@ -242,10 +242,10 @@ private Q_SLOTS:
     void test_scalable()
     {
         QFETCH(KIconLoaderDummy::Context, context);
-        QFETCH(QList<QSharedPointer<Dir>>, dirs);
+        QFETCH(QList<std::shared_ptr<Dir>>, dirs);
 
-        QList<QSharedPointer<Dir>> fixedDirs;
-        QList<QSharedPointer<Dir>> scalableDirs;
+        QList<std::shared_ptr<Dir>> fixedDirs;
+        QList<std::shared_ptr<Dir>> scalableDirs;
         for (auto dir : dirs) {
             switch (dir->type) {
             case KIconLoaderDummy::Scalable:
@@ -307,9 +307,9 @@ private Q_SLOTS:
 
     void test_scalableDuplicates()
     {
-        QFETCH(QList<QSharedPointer<Dir>>, dirs);
+        QFETCH(QList<std::shared_ptr<Dir>>, dirs);
 
-        QList<QSharedPointer<Dir>> scalableDirs;
+        QList<std::shared_ptr<Dir>> scalableDirs;
         for (auto dir : dirs) {
             switch (dir->type) {
             case KIconLoaderDummy::Scalable:
diff -pruN 4:5.94.0-1/CMakeLists.txt 4:5.96.0-1/CMakeLists.txt
--- 4:5.94.0-1/CMakeLists.txt	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/CMakeLists.txt	2022-07-02 14:28:29.000000000 +0000
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.94.0") # handled by release scripts
+set(KF_VERSION "5.96.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF_VERSION})
 
 # Disallow in-source build
@@ -10,7 +10,7 @@ endif()
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.93.0  NO_MODULE)
+find_package(ECM 5.96.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules")
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -pruN 4:5.94.0-1/debian/changelog 4:5.96.0-1/debian/changelog
--- 4:5.94.0-1/debian/changelog	2022-05-19 21:59:01.000000000 +0000
+++ 4:5.96.0-1/debian/changelog	2022-07-31 11:32:54.000000000 +0000
@@ -1,3 +1,11 @@
+breeze-icons (4:5.96.0-1) unstable; urgency=medium
+
+  [ Aurélien COUDERC ]
+  * New upstream release (5.96.0).
+  * Bump Standards-Version to 4.6.1, no change required.
+
+ -- Aurélien COUDERC <coucouf@debian.org>  Sun, 31 Jul 2022 13:32:54 +0200
+
 breeze-icons (4:5.94.0-1) unstable; urgency=medium
 
   [ Aurélien COUDERC ]
diff -pruN 4:5.94.0-1/debian/control 4:5.96.0-1/debian/control
--- 4:5.94.0-1/debian/control	2022-04-29 21:00:43.000000000 +0000
+++ 4:5.96.0-1/debian/control	2022-07-31 11:32:54.000000000 +0000
@@ -6,12 +6,12 @@ Uploaders: Aurélien COUDERC <coucouf@de
            Norbert Preining <norbert@preining.info>,
 Build-Depends: cmake (>= 3.16~),
                debhelper-compat (= 13),
-               extra-cmake-modules (>= 5.93.0~),
+               extra-cmake-modules (>= 5.96.0~),
                fdupes,
                libxml2-utils,
                pkg-kde-tools,
                qtbase5-dev (>= 5.15.2~),
-Standards-Version: 4.6.0
+Standards-Version: 4.6.1
 Homepage: https://invent.kde.org/frameworks/breeze-icons
 Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/breeze-icons
 Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/breeze-icons.git
diff -pruN 4:5.94.0-1/icons/actions/16/edit-image.svg 4:5.96.0-1/icons/actions/16/edit-image.svg
--- 4:5.94.0-1/icons/actions/16/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/16/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/16/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/16/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/16@2x/edit-image.svg 4:5.96.0-1/icons/actions/16@2x/edit-image.svg
--- 4:5.94.0-1/icons/actions/16@2x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16@2x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/16@2x/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/16@2x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/16@2x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16@2x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/16@3x/edit-image.svg 4:5.96.0-1/icons/actions/16@3x/edit-image.svg
--- 4:5.94.0-1/icons/actions/16@3x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16@3x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/16@3x/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/16@3x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/16@3x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/16@3x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22/edit-image.svg 4:5.96.0-1/icons/actions/22/edit-image.svg
--- 4:5.94.0-1/icons/actions/22/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/22/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/22/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22@2x/edit-image.svg 4:5.96.0-1/icons/actions/22@2x/edit-image.svg
--- 4:5.94.0-1/icons/actions/22@2x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22@2x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22@2x/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/22@2x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/22@2x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22@2x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22@3x/edit-image.svg 4:5.96.0-1/icons/actions/22@3x/edit-image.svg
--- 4:5.94.0-1/icons/actions/22@3x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22@3x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#232629;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons/actions/22@3x/sidebar-show-symbolic.svg 4:5.96.0-1/icons/actions/22@3x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons/actions/22@3x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons/actions/22@3x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons/applets/256/org.kde.plasma.analogclock.svg 4:5.96.0-1/icons/applets/256/org.kde.plasma.analogclock.svg
--- 4:5.94.0-1/icons/applets/256/org.kde.plasma.analogclock.svg	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/icons/applets/256/org.kde.plasma.analogclock.svg	2022-07-02 14:28:29.000000000 +0000
@@ -16,33 +16,68 @@
    <stop offset="1" stop-color="#232629" stop-opacity="0"/>
   </linearGradient>
   <radialGradient r="104" cy="855.36" cx="1007" gradientUnits="userSpaceOnUse" id="4" xlink:href="#0"/>
+    <style id="current-color-scheme" type="text/css">
+   .ColorScheme-Text {
+     color:#4d4d4d;
+   }
+   .ColorScheme-Background {
+     color:#eff0f1;
+   }
+   .ColorScheme-Highlight {
+     color:#3daee9;
+   }
+   .ColorScheme-ViewText {
+     color:#31363b;
+   }
+   .ColorScheme-ViewBackground {
+     color:#fcfcfc;
+   }
+   .ColorScheme-ViewHover {
+     color:#93cee9;
+   }
+   .ColorScheme-ViewFocus{
+     color:#3daee9;
+   }
+   .ColorScheme-ButtonText {
+     color:#31363b;
+   }
+   .ColorScheme-ButtonBackground {
+     color:#eff0f1;
+   }
+   .ColorScheme-ButtonHover {
+     color:#93cee9;
+   }
+   .ColorScheme-ButtonFocus{
+     color:#3daee9;
+   }
+  </style>
  </defs>
  <g transform="matrix(1.08344 0 0 1.08344-963.2-796.49)">
   <path opacity=".005" fill="#717171" d="m900 746.36h214v214h-214z"/>
   <circle cx="1007" cy="855.36" r="104" fill="url(#4)"/>
-  <circle r="96.61" cy="853.36" cx="1007" fill="#eff0f1"/>
-  <path 
-      d="m963.39 776.51l-.844.5 2.094 3.594c.278-.163.564-.308.844-.469zm87.87 0l-2.031 3.531c.293.167.585.33.875.5l2.031-3.531zm-95.69 5.03l-.813.563 2.469 3.406c.269-.199.541-.398.813-.594zm103.5 0l-2.375 3.281c.267.192.548.368.813.563l2.375-3.281zm-110.75 5.813l-.719.656 2.781 3.094c.24-.219.508-.408.75-.625zm118 0l-2.719 3c.248.221.505.432.75.656l2.719-3zm-124.59 6.531l-.656.75 3.125 2.813c.219-.247.434-.505.656-.75zm131.19 0l-3 2.688c.233.255.458.523.687.781l3-2.719zm-137.06 7.188l-.594.781 3.438 2.5c.192-.268.367-.547.563-.813zm142.94 0l-3.25 2.375c.19.259.375.52.562.781l3.281-2.375zm-148.06 7.75l-.5.875 3.688 2.125c.166-.292.331-.585.5-.875zm153.19 0l-3.5 2.031c.17.29.333.582.5.875l3.5-2.031zm-157.44 8.25l-.406.906 3.875 1.719c.133-.305.269-.603.406-.906zm161.69 0l-3.688 1.625c.136.301.274.603.406.906l3.688-1.625zm-165.06 8.656l-.312.938 4.062 1.313c.098-.308.18-.631.281-.938zm168.44 0l-3.844 1.25c.102.31.214.626.313.938l3.844-1.25zm-170.91 8.969l-.188.969 4.156.875c.066-.324.149-.646.219-.969zm173.34 0l-3.937.844c.069.321.122.647.187.969l3.969-.844zm-174.81 9.156l-.125.969 4.281.438c.031-.322.059-.648.094-.969l-4.25-.438m176.34 0l-4.063.438c.035.321.063.647.094.969l4.062-.438-.094-.969m-172.16 18.09l-4.312.438.125 1 4.281-.438c-.037-.333-.061-.666-.094-1m168.16 0c-.033.334-.057.667-.094 1l4.094.438.094-1zm-166.84 8.719l-4.219.906.188.969 4.25-.906c-.071-.322-.152-.645-.219-.969m165.53.063c-.067.324-.148.646-.219.969l4 .844.219-.969zm-163.28 8.469l-4.125 1.344.312.969 4.125-1.344c-.107-.323-.209-.644-.312-.969m161 .063c-.104.325-.205.646-.313.969l3.938 1.281.312-.969zm-157.87 8.219l-3.969 1.781.406.906 3.969-1.781c-.138-.303-.272-.601-.406-.906m154.75.094c-.134.303-.269.605-.406.906l3.781 1.688.406-.906zm-150.75 7.781l-3.813 2.188.5.875 3.813-2.188c-.17-.289-.333-.584-.5-.875m146.75.094c-.168.292-.329.585-.5.875l3.625 2.094.5-.875zm-142 7.344l-3.531 2.563.594.813 3.531-2.563c-.199-.27-.397-.54-.594-.813m137.19.094c-.193.268-.366.547-.562.813l3.375 2.469.594-.813zm-131.62 6.781l-3.281 2.938.656.75 3.281-2.938c-.224-.246-.435-.502-.656-.75m126.09.094c-.226.253-.458.499-.688.75l3.156 2.844.687-.75zm-119.94 6.188l-2.906 3.25.719.688 2.938-3.281c-.248-.221-.504-.432-.75-.656m113.72.094c-.251.228-.496.462-.75.688l2.844 3.156.75-.688zm-106.91 5.5l-2.563 3.531.813.594 2.563-3.531c-.272-.195-.543-.395-.813-.594m100.06.094c-.27.198-.54.399-.813.594l2.5 3.438.813-.594zm-92.66 4.781l-2.187 3.781.844.5 2.188-3.813c-.28-.16-.566-.306-.844-.469m85.25.063c-.283.165-.559.338-.844.5l2.125 3.719.875-.5zm-77.44 4l-1.75 3.969.906.406 1.781-3.969c-.313-.138-.626-.265-.937-.406m69.62.094c-.308.139-.628.271-.938.406l1.719 3.875.938-.406zm-61.37 3.125l-1.344 4.156.938.313 1.344-4.156c-.314-.1-.625-.209-.937-.313m53.09.063c-.322.106-.645.21-.969.313l1.344 4.094.969-.313zm-44.594 2.25l-.906 4.25 1 .219.906-4.25c-.334-.069-.668-.146-1-.219m36.06.063c-.326.071-.641.152-.969.219l.906 4.188.969-.219zm-27.312 1.375l-.469 4.344 1 .094.438-4.313c-.325-.032-.645-.089-.969-.125m18.594.031c-.323.035-.645.062-.969.094l.437 4.313.969-.094z" 
-      opacity=".6" color="#000" fill="#31363b"/>
-  <path 
-      d="m1012.69 766.92c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871" 
+  <circle r="96.61" cy="853.36" cx="1007" style="fill:currentColor;fill-opacity:1" class="ColorScheme-Background"/>
+  <path
+      d="m963.39 776.51l-.844.5 2.094 3.594c.278-.163.564-.308.844-.469zm87.87 0l-2.031 3.531c.293.167.585.33.875.5l2.031-3.531zm-95.69 5.03l-.813.563 2.469 3.406c.269-.199.541-.398.813-.594zm103.5 0l-2.375 3.281c.267.192.548.368.813.563l2.375-3.281zm-110.75 5.813l-.719.656 2.781 3.094c.24-.219.508-.408.75-.625zm118 0l-2.719 3c.248.221.505.432.75.656l2.719-3zm-124.59 6.531l-.656.75 3.125 2.813c.219-.247.434-.505.656-.75zm131.19 0l-3 2.688c.233.255.458.523.687.781l3-2.719zm-137.06 7.188l-.594.781 3.438 2.5c.192-.268.367-.547.563-.813zm142.94 0l-3.25 2.375c.19.259.375.52.562.781l3.281-2.375zm-148.06 7.75l-.5.875 3.688 2.125c.166-.292.331-.585.5-.875zm153.19 0l-3.5 2.031c.17.29.333.582.5.875l3.5-2.031zm-157.44 8.25l-.406.906 3.875 1.719c.133-.305.269-.603.406-.906zm161.69 0l-3.688 1.625c.136.301.274.603.406.906l3.688-1.625zm-165.06 8.656l-.312.938 4.062 1.313c.098-.308.18-.631.281-.938zm168.44 0l-3.844 1.25c.102.31.214.626.313.938l3.844-1.25zm-170.91 8.969l-.188.969 4.156.875c.066-.324.149-.646.219-.969zm173.34 0l-3.937.844c.069.321.122.647.187.969l3.969-.844zm-174.81 9.156l-.125.969 4.281.438c.031-.322.059-.648.094-.969l-4.25-.438m176.34 0l-4.063.438c.035.321.063.647.094.969l4.062-.438-.094-.969m-172.16 18.09l-4.312.438.125 1 4.281-.438c-.037-.333-.061-.666-.094-1m168.16 0c-.033.334-.057.667-.094 1l4.094.438.094-1zm-166.84 8.719l-4.219.906.188.969 4.25-.906c-.071-.322-.152-.645-.219-.969m165.53.063c-.067.324-.148.646-.219.969l4 .844.219-.969zm-163.28 8.469l-4.125 1.344.312.969 4.125-1.344c-.107-.323-.209-.644-.312-.969m161 .063c-.104.325-.205.646-.313.969l3.938 1.281.312-.969zm-157.87 8.219l-3.969 1.781.406.906 3.969-1.781c-.138-.303-.272-.601-.406-.906m154.75.094c-.134.303-.269.605-.406.906l3.781 1.688.406-.906zm-150.75 7.781l-3.813 2.188.5.875 3.813-2.188c-.17-.289-.333-.584-.5-.875m146.75.094c-.168.292-.329.585-.5.875l3.625 2.094.5-.875zm-142 7.344l-3.531 2.563.594.813 3.531-2.563c-.199-.27-.397-.54-.594-.813m137.19.094c-.193.268-.366.547-.562.813l3.375 2.469.594-.813zm-131.62 6.781l-3.281 2.938.656.75 3.281-2.938c-.224-.246-.435-.502-.656-.75m126.09.094c-.226.253-.458.499-.688.75l3.156 2.844.687-.75zm-119.94 6.188l-2.906 3.25.719.688 2.938-3.281c-.248-.221-.504-.432-.75-.656m113.72.094c-.251.228-.496.462-.75.688l2.844 3.156.75-.688zm-106.91 5.5l-2.563 3.531.813.594 2.563-3.531c-.272-.195-.543-.395-.813-.594m100.06.094c-.27.198-.54.399-.813.594l2.5 3.438.813-.594zm-92.66 4.781l-2.187 3.781.844.5 2.188-3.813c-.28-.16-.566-.306-.844-.469m85.25.063c-.283.165-.559.338-.844.5l2.125 3.719.875-.5zm-77.44 4l-1.75 3.969.906.406 1.781-3.969c-.313-.138-.626-.265-.937-.406m69.62.094c-.308.139-.628.271-.938.406l1.719 3.875.938-.406zm-61.37 3.125l-1.344 4.156.938.313 1.344-4.156c-.314-.1-.625-.209-.937-.313m53.09.063c-.322.106-.645.21-.969.313l1.344 4.094.969-.313zm-44.594 2.25l-.906 4.25 1 .219.906-4.25c-.334-.069-.668-.146-1-.219m36.06.063c-.326.071-.641.152-.969.219l.906 4.188.969-.219zm-27.312 1.375l-.469 4.344 1 .094.438-4.313c-.325-.032-.645-.089-.969-.125m18.594.031c-.323.035-.645.062-.969.094l.437 4.313.969-.094z"
+      style="fill:currentColor;fill-opacity:.6" class="ColorScheme-ViewText"/>
+  <path
+      d="m1012.69 766.92c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871"
       fill="#232629" filter="url(#1)" fill-opacity=".443"/>
-  <path 
-      d="m1012.69 765.72c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871" fill="#3daee9"/>
+  <path
+      d="m1012.69 765.72c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871" style="fill:currentColor" class="ColorScheme-ButtonFocus"/>
   <path fill="#212121" filter="url(#2)" fill-opacity=".413" d="m917.02 853.51h20v2.709h-20z"/>
-  <path fill="#3daee9" d="m916.91 852.3h20v2.709h-20z"/>
+  <path style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m916.91 852.3h20v2.709h-20z"/>
   <path fill="#1c1c1c" filter="url(#2)" fill-opacity=".361" d="m1078.12 853.51h20v2.709h-20z"/>
-  <path fill="#3daee9" d="m1078.11 852.3h20v2.709h-20z"/>
+  <path style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m1078.11 852.3h20v2.709h-20z"/>
   <path transform="matrix(0 1-1 0-315.26 577.14)" fill="#2a2a2a" filter="url(#3)" fill-opacity=".524" d="m349.03-1323.93h20v2.71h-20z"/>
-  <path transform="matrix(0 1-1 0 0 0)" fill="#3daee9" d="m924.95-1008.76h20v2.71h-20z"/>
+  <path transform="matrix(0 1-1 0 0 0)" style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m924.95-1008.76h20v2.71h-20z"/>
   <circle r="96.61" cy="853.36" cx="1007" stroke-opacity=".677" fill="none" stroke="#70767a"/>
-  <g fill="#666667">
+  <g style="fill:currentColor" class="ColorScheme-ViewText">
    <path d="m1079.34 810.5l4.03-2.325 1.354 2.346-4.03 2.325zm-149.43 86.28l4.03-2.325 1.355 2.346-4.03 2.325z"/>
    <path d="m1048.11 780.27l2.325-4.03 2.346 1.355-2.325 4.03zm-86.28 149.43l2.325-4.03 2.346 1.355-2.325 4.03z"/>
    <path d="m933.93 812.85l-4.03-2.325 1.355-2.346 4.03 2.325zm149.43 86.28l-4.03-2.325 1.354-2.346 4.03 2.325z"/>
    <path d="m964.16 781.63l-2.325-4.03 2.346-1.355 2.325 4.03zm86.28 149.43l-2.325-4.03 2.346-1.355 2.325 4.03z"/>
   </g>
-  <g fill="#575757">
+  <g style="fill:currentColor" class="ColorScheme-ViewText">
    <path d="m991.72 882.95c-.188.762-.404 1.35-.65 1.764-.113.195-.225.293-.334.293-.043 0-.096-.01-.158-.029-.297-.09-.445-.197-.445-.322 0-.063.041-.104.123-.123.344-.516.547-1.135.609-1.857-.215-.191-.418-.287-.609-.287-.406-.004-.887.354-1.441 1.072-.512.672-.955 1.469-1.33 2.391-.391.961-.578 1.762-.563 2.402.004.371.115.648.334.832.16.133.342.199.545.199.117 0 .252-.023.404-.07.375-.117.809-.344 1.301-.68.469-.32.859-.646 1.172-.979.098-.105.156-.24.176-.404.012-.086.051-.129.117-.129.055 0 .096.035.123.105.141.352.211.596.211.732 0 .129-.053.25-.158.363-.07.07-.236.205-.498.404-.828.621-1.539 1.01-2.133 1.16-.184.047-.352.07-.504.07-.32 0-.564-.107-.732-.322-.762-.285-1.143-.721-1.143-1.307 0-.945.248-1.961.744-3.047.426-.941.951-1.77 1.576-2.484.602-.684 1.09-1.039 1.465-1.066.137-.012.295.045.475.17.023.016.205.162.545.439.019-.156.072-.234.158-.234.094 0 .252.086.475.258.141.109.211.215.211.316 0 .066-.021.189-.064.369"/>
    <path d="m995.61 885.99c-.01.348-.092.809-.252 1.383-.254.906-.613 1.609-1.078 2.109-.246.266-.519.398-.82.398-.117 0-.268-.025-.451-.076-.367-.023-.666-.139-.896-.346-.25-.227-.367-.518-.351-.873.016-.414.158-.992.428-1.734.297-.809.606-1.391.926-1.746.152-.172.277-.258.375-.258.133 0 .348.137.644.41.082-.039.25-.111.504-.217.129-.043.227-.064.293-.064.152 0 .322.143.51.428.121.176.178.371.17.586m-.674.17c.027-.262.041-.428.041-.498 0-.164-.051-.246-.152-.246-.039 0-.09.008-.152.023l-.908.369c-.106.043-.166.064-.182.064-.031 0-.062-.037-.094-.111-.227.277-.438.678-.633 1.201-.152.41-.258.777-.316 1.102-.043.219-.065.418-.065.598 0 .602.186.895.557.879.148-.004.308-.063.48-.176.328-.223.635-.668.92-1.336.274-.629.441-1.252.504-1.869"/>
    <path d="m1003.13 887.83c-.254.379-.633 1.047-1.137 2-.047.086-.076.131-.088.135-.035.019-.117.01-.246-.029-.27-.082-.404-.16-.404-.234 0-.043.018-.105.053-.188.293-.684.544-1.413.753-2.188.209-.775.31-1.37.302-1.784 0-.137-.049-.205-.146-.205-.066 0-.144.037-.234.111-.332.27-.762.793-1.289 1.57-.633.938-1.08 1.814-1.342 2.631-.027.094-.051.146-.07.158-.023.012-.08.002-.17-.029-.133-.047-.26-.113-.381-.199-.059-.043-.088-.088-.088-.135 0-.008.029-.084.088-.229.512-1.281.768-2.521.768-3.721 0-.121-.035-.182-.105-.182-.051 0-.115.033-.193.1-.418.352-.883.957-1.394 1.816-.492.82-.859 1.59-1.102 2.309-.062.184-.127.275-.193.275-.078 0-.238-.088-.481-.264-.062-.035-.094-.072-.094-.111 0-.043.043-.109.129-.199.16-.34.342-.926.545-1.758.23-.949.33-1.639.299-2.068-.059.059-.158.155-.299.29-.141.135-.246.237-.316.308-.051.051-.096.076-.135.076-.059 0-.088-.039-.088-.117 0-.063.022-.117.065-.164.219-.227.436-.494.65-.803.078-.109.146-.164.205-.164.043 0 .127.063.252.188.098.035.195.07.293.105.082.039.123.111.123.217 0 .031 0 .064-.012.1-.098.754-.248 1.457-.451 2.109.691-1.242 1.334-2.125 1.928-2.648.082-.074.162-.111.24-.111.082 0 .207.053.375.158.16.07.266.133.316.188.059.07.088.18.088.328 0 .797-.092 1.506-.275 2.127.762-1.207 1.455-2.104 2.08-2.689.082-.078.168-.117.258-.117.117 0 .262.078.434.234.305.047.449.232.434.557-.047.941-.25 1.852-.609 2.73.195-.23.348-.43.457-.598.051-.082.109-.123.176-.123.059 0 .088.031.088.094 0 .039-.018.086-.053.141"/>
@@ -61,7 +96,7 @@
   </g>
   <path opacity=".01" fill="#232629" fill-opacity=".604" d="m938 844.36h18v64h-18z"/>
   <path d="m1047.3 795.14l-37.89 65.58-2.598-1.501 37.89-65.58z" opacity=".3" fill="#717171"/>
-  <g transform="matrix(-.5.86603-.86603-.5 2251.45 411.25)" fill="#232629">
+  <g transform="matrix(-.5.86603-.86603-.5 2251.45 411.25)" style="fill:currentColor" class="ColorScheme-ViewText">
    <path d="m1004.18 904.03l2.98 5.209 2.894-5.322h-.062l.034-43.13-5.812.082-.035 43.13z"/>
    <circle transform="matrix(-.60001-.79999.79999-.60001 0 0)" cx="-1288.8" cy="292.23" r="6.499"/>
   </g>
diff -pruN 4:5.94.0-1/icons/apps/48/graphics-viewer-document.svg 4:5.96.0-1/icons/apps/48/graphics-viewer-document.svg
--- 4:5.94.0-1/icons/apps/48/graphics-viewer-document.svg	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/icons/apps/48/graphics-viewer-document.svg	2022-07-02 14:28:29.000000000 +0000
@@ -1,41 +1,430 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1">
- <defs>
-  <linearGradient id="linearGradient5022">
-   <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0"/>
-   <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4159" id="linearGradient4158" x1="409.571" y1="543.798" x2="409.571" y2="503.798" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1250015,0,0,1,-51.071966,0)"/>
-  <linearGradient id="linearGradient4143">
-   <stop style="stop-color:#197cf1;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#20bcfa;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4143" id="linearGradient4555" x1="35" y1="44" x2="35" y2="7" gradientUnits="userSpaceOnUse"/>
-  <linearGradient id="linearGradient4159">
-   <stop style="stop-color:#1d1e1e;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#44484c;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="linearGradient4435">
-   <stop style="stop-color:#c61423;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#dc2b41;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4435" id="linearGradient4866" x1="396.571" y1="520.798" x2="396.571" y2="503.798" gradientUnits="userSpaceOnUse"/>
-  <linearGradient xlink:href="#linearGradient4227" id="linearGradient4884" x1="8" y1="4" x2="22" y2="18" gradientUnits="userSpaceOnUse"/>
-  <linearGradient id="linearGradient4227">
-   <stop offset="0" style="stop-color:#292c2f;stop-opacity:1"/>
-   <stop offset="1" style="stop-color:#000000;stop-opacity:0;"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient5022" id="linearGradient5028" x1="396.571" y1="527.798" x2="396.571" y2="504.798" gradientUnits="userSpaceOnUse"/>
- </defs>
- <g transform="translate(-384.57143,-499.798)">
-  <rect style="opacity:1;fill:url(#linearGradient4158);fill-opacity:1.0;stroke:none" width="36" height="40" x="390.57" y="503.8" ry="0"/>
-  <path style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4555);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 42 6.7070312 C 40.903061 7.1602802 39.805921 7.7557544 38.708984 8.5351562 C 36.864351 9.8458162 35.117264 11.496061 33.466797 13.486328 C 31.864877 15.428048 30.408316 17.637588 29.097656 20.113281 C 27.835536 22.540435 26.888873 25.06422 26.257812 27.685547 C 25.578213 30.306867 25.287679 32.710091 25.384766 34.894531 C 25.530392 37.030425 25.990891 38.82691 26.767578 40.283203 C 27.544271 41.73949 28.611503 42.783002 29.970703 43.414062 C 31.32991 44.045122 32.932704 44.165684 34.777344 43.777344 C 36.57343 43.388997 38.393641 42.541129 40.238281 41.230469 C 40.842095 40.796962 41.425815 40.322841 42 39.830078 L 42 35.259766 C 41.637935 35.5419 41.269467 35.81059 40.894531 36.060547 C 39.438238 36.982867 38.029129 37.516483 36.669922 37.662109 C 35.262175 37.807743 34.074376 37.564654 33.103516 36.933594 C 32.132656 36.302534 31.379676 35.35587 30.845703 34.09375 C 30.36027 32.83163 30.117188 31.327625 30.117188 29.580078 C 30.117187 27.783985 30.407714 25.84126 30.990234 23.753906 C 31.572748 21.66656 32.39885 19.676383 33.466797 17.783203 C 34.534744 15.841483 35.698818 14.14184 36.960938 12.685547 C 38.271604 11.180714 39.631316 9.9672419 41.039062 9.0449219 C 41.360608 8.8305578 41.680821 8.6448356 42 8.4707031 L 42 6.7070312 z" transform="translate(384.57143,499.798)"/>
-  <rect style="opacity:1;fill:#080809;fill-opacity:1;stroke:none" width="36" height="1" x="390.57" y="542.8"/>
-  <rect style="opacity:0.6;fill:#080809;fill-opacity:1;stroke:none;stroke-opacity:1" width="2" height="40" x="390.57" y="503.8"/>
-  <path style="fill:url(#linearGradient4884);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.2" d="M 16 4 L 16 18 L 16 21 L 12 18.691406 L 8 21 L 31 44 L 42 44 L 42 30 L 16 4 z" transform="translate(384.57143,499.798)"/>
-  <rect style="opacity:1;fill:#8b8f8f;fill-opacity:1;stroke:none;stroke-opacity:1" width="34" height="1" x="392.57" y="541.8"/>
-  <rect style="opacity:1;fill:#212323;fill-opacity:0.45197742;stroke:none;stroke-opacity:1" width="34" height="1" x="392.57" y="540.8"/>
-  <path style="opacity:1;fill:url(#linearGradient4866);fill-opacity:1;stroke:none;stroke-opacity:1" d="m 392.57143,503.798 0,17 4,-2.30859 4,2.30859 0,-17 -8,0 z"/>
-  <path style="opacity:0.15;fill:url(#linearGradient5028);fill-opacity:1;stroke:none;stroke-opacity:1" d="m 393.57144,503.798 6,0 0,15 -3,-2 -3,2 z"/>
- </g>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+   sodipodi:docname="okular.svg"
+   viewBox="0 0 48 48"
+   height="48"
+   width="48"
+   id="svg3040"
+   version="1.1">
+  <metadata
+     id="metadata3046">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3044">
+    <linearGradient
+       id="linearGradient788">
+      <stop
+         style="stop-color:#f7f7f7;stop-opacity:1;"
+         offset="0"
+         id="stop784" />
+      <stop
+         style="stop-color:#f7f7f7;stop-opacity:0.392"
+         offset="1"
+         id="stop786" />
+    </linearGradient>
+    <linearGradient
+       y2="7"
+       x2="35"
+       y1="44"
+       x1="35"
+       gradientTransform="matrix(2.0848431,0,0,2.0848431,23.654883,-157.19887)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3667"
+       xlink:href="#linearGradient4143"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient4143">
+      <stop
+         id="stop1180"
+         offset="0"
+         style="stop-color:#197cf1;stop-opacity:1" />
+      <stop
+         id="stop1182"
+         offset="1"
+         style="stop-color:#20bcfa;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="5.4949999"
+       x2="30.045"
+       y1="10.71"
+       x1="34.237"
+       id="linearGradient4483"
+       xlink:href="#linearGradient788"
+       gradientTransform="matrix(2.2357723,0,0,2.2357723,-19.866555,-10.798983)" />
+    <linearGradient
+       id="linearGradient4477">
+      <stop
+         id="stop3986"
+         offset="0"
+         style="stop-color:#f7f7f7;stop-opacity:1;" />
+      <stop
+         id="stop3988"
+         offset="1"
+         style="stop-color:#f7f7f7;stop-opacity:0.392" />
+    </linearGradient>
+    <linearGradient
+       xlink:href="#linearGradient4485"
+       gradientTransform="matrix(2.1868346,0.45888721,-0.44661079,2.192088,438.55318,-2222.385)"
+       x2="0"
+       gradientUnits="userSpaceOnUse"
+       y2="1012.95"
+       y1="1040.95"
+       id="e">
+      <stop
+         id="stop4002"
+         stop-color="#f2f2f2" />
+      <stop
+         id="stop4004"
+         stop-color="#ffffff"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="5.4949999"
+       x2="30.045"
+       y1="10.71"
+       x1="34.237"
+       id="linearGradient4483-2"
+       xlink:href="#linearGradient4477"
+       gradientTransform="translate(-25.534062,-47.872155)" />
+    <linearGradient
+       gradientTransform="matrix(1,0,0,0.9661017,-25.534062,-1017.9827)"
+       x2="0"
+       gradientUnits="userSpaceOnUse"
+       y2="1012.95"
+       y1="1040.95"
+       id="e-8">
+      <stop
+         id="stop4002-7"
+         stop-color="#f2f2f2" />
+      <stop
+         id="stop4004-9"
+         stop-color="#ffffff"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="3.1719999"
+       x2="13"
+       y1="44.006001"
+       x1="13"
+       id="linearGradient4491"
+       xlink:href="#linearGradient4485"
+       gradientTransform="translate(-25.534062,-47.872155)" />
+    <linearGradient
+       id="linearGradient4485">
+      <stop
+         id="stop3981"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop3983"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0.384" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       y1="40"
+       y2="6"
+       gradientUnits="userSpaceOnUse"
+       x2="0"
+       gradientTransform="matrix(0.69597654,0,0,0.68423827,-7.3401807,-10.191357)">
+      <stop
+         stop-color="#b1b1b1"
+         id="stop570" />
+      <stop
+         offset="1"
+         stop-color="#dddddd"
+         id="stop572" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,-5.8537563,-13.196481)"
+       xlink:href="#b"
+       id="d"
+       y1="21"
+       x1="23"
+       y2="39"
+       gradientUnits="userSpaceOnUse"
+       x2="40" />
+    <linearGradient
+       id="b"
+       y1="11"
+       x1="17"
+       y2="41"
+       gradientUnits="userSpaceOnUse"
+       x2="44"
+       gradientTransform="translate(0,1004.36)">
+      <stop
+         id="stop565" />
+      <stop
+         offset="1"
+         stop-opacity="0"
+         id="stop567" />
+    </linearGradient>
+    <linearGradient
+       id="e-6"
+       y1="1040.95"
+       y2="1012.95"
+       gradientUnits="userSpaceOnUse"
+       x2="0"
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,145.49123,-751.57629)">
+      <stop
+         stop-color="#f2f2f2"
+         id="stop576" />
+      <stop
+         offset="1"
+         stop-color="#ffffff"
+         id="stop578" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.7394723,0,0,0.75045874,-8.3843157,-11.752311)"
+       xlink:href="#linearGradient4485"
+       id="linearGradient4491-2"
+       x1="13"
+       y1="44.006001"
+       x2="13"
+       y2="3.1719999"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,-5.8537563,-13.196481)"
+       xlink:href="#linearGradient788"
+       id="linearGradient4483-9"
+       x1="34.237"
+       y1="10.71"
+       x2="30.045"
+       y2="5.4949999"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientTransform="matrix(-0.72441175,-0.14848198,0.15068799,-0.73517444,46.373033,26.618705)"
+       x2="49"
+       gradientUnits="userSpaceOnUse"
+       y2="20.735001"
+       x1="49.088001"
+       y1="26.497"
+       id="d-3">
+      <stop
+         id="stop581" />
+      <stop
+         stop-opacity="0"
+         stop-color="#655c6f"
+         offset="1"
+         id="stop583" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.89013508,0,0,1.0204399,-2.5796396,-8.898851)"
+       xlink:href="#linearGradient4143"
+       id="linearGradient4555"
+       x1="35"
+       y1="44"
+       x2="35"
+       y2="7"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4143"
+       id="linearGradient3667-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.66090133,0,0,0.69246156,1.9087578,-1.3071134)"
+       x1="35"
+       y1="44"
+       x2="35"
+       y2="7" />
+    <linearGradient
+       gradientTransform="translate(2.9032089,12.763397)"
+       xlink:href="#linearGradient4227"
+       id="linearGradient4884"
+       x1="8"
+       y1="4"
+       x2="22"
+       y2="18"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4227">
+      <stop
+         offset="0"
+         style="stop-color:#292c2f;stop-opacity:1"
+         id="stop1324" />
+      <stop
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;"
+         id="stop1326" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="18"
+       x2="22"
+       y1="4"
+       x1="8"
+       id="linearGradient4884-7"
+       xlink:href="#linearGradient4227"
+       gradientTransform="translate(19.257458,6.9356545)" />
+  </defs>
+  <sodipodi:namedview
+     inkscape:document-rotation="0"
+     inkscape:current-layer="svg3040"
+     inkscape:window-maximized="1"
+     inkscape:window-y="0"
+     inkscape:window-x="0"
+     inkscape:cy="34.380946"
+     inkscape:cx="25.379255"
+     inkscape:zoom="8.5811658"
+     inkscape:snap-global="false"
+     showgrid="true"
+     id="namedview3042"
+     inkscape:window-height="1011"
+     inkscape:window-width="1920"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     guidetolerance="10"
+     gridtolerance="10"
+     objecttolerance="10"
+     borderopacity="1"
+     bordercolor="#666666"
+     pagecolor="#ffffff">
+    <inkscape:grid
+       id="grid154"
+       type="xygrid" />
+  </sodipodi:namedview>
+  <g
+     transform="matrix(1.3247736,-0.26756236,0.27153756,1.3053794,11.338242,15.660171)"
+     id="g4738">
+    <rect
+       transform="rotate(11.583424)"
+       width="23.663115"
+       x="-2.4685373"
+       y="-8.7504768"
+       height="30.018351"
+       style="fill:url(#c);fill-rule:evenodd;stroke-width:0.744945"
+       ry="0.75045872"
+       rx="0.73947233"
+       id="rect590" />
+    <path
+       d="M 16.098435,19.647289 -4.9385343,19.165666 -3.9405356,20.874002 16.489545,25.08988 21.914312,-1.3764004 20.766865,-3.1437133 Z"
+       style="opacity:0.2;fill:url(#d);fill-rule:evenodd;stroke-width:0.744945"
+       id="path592" />
+    <path
+       d="M 0.48623319,-7.3006146 -4.9385343,19.165666 15.344995,23.323161 20.769763,-3.1431193 Z"
+       style="fill:url(#e-6);fill-rule:evenodd;stroke-width:0.744945"
+       id="path594" />
+    <rect
+       transform="rotate(11.583424)"
+       width="20.705225"
+       x="-0.98959297"
+       y="19.016499"
+       height="0.76246613"
+       style="opacity:0.437;fill:#1b1b1b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.744945"
+       id="rect596" />
+    <rect
+       transform="rotate(11.583424)"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.082;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4491-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.744945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       width="0.73947233"
+       height="26.266056"
+       x="0.48935133"
+       y="-7.2495589"
+       id="rect630" />
+    <path
+       d="m 15.698873,-4.1824947 4.016066,6.185595 1.054816,-5.1462211 z"
+       style="fill:#fdfdfd;fill-opacity:1;fill-rule:evenodd;stroke-width:0.744945"
+       id="path654" />
+    <rect
+       transform="rotate(11.583424)"
+       y="-7.2495589"
+       x="-0.98959297"
+       height="26.266056"
+       width="1.4789447"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.373;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.744945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="rect656" />
+  </g>
+  <path
+     sodipodi:nodetypes="csaaasaccaaaaaaacc"
+     inkscape:connector-curvature="0"
+     id="path1208-2"
+     d="m 88.799742,-135.25436 c 0,0 -10.903645,16.83943 -13.868168,28.83981 -2.063861,8.354498 -2.109708,17.519333 0.174276,25.816357 1.186634,4.310683 3.531157,8.504775 6.78652,11.569525 3.206355,3.018613 7.512397,4.889158 11.777469,5.98547 4.308445,1.107461 8.921561,0.971445 13.338241,0.440295 10.11174,-1.216039 18.01577,-3.65239 25.18264,-8.94237 2.59849,-1.918 5.78861,-7.76979 5.78861,-7.76979 l -0.0292,-12.653119 c 0,0 -6.15665,11.541499 -10.90263,15.856579 -4.46064,4.05565 -9.92848,7.45539 -15.80839,8.78663 -4.26599,0.96585 -9.0283,0.79324 -13.096653,-0.81299 -3.070302,-1.21218 -5.749849,-3.59572 -7.637172,-6.30388 -2.063652,-2.96118 -2.882888,-6.67835 -3.575659,-10.22057 -0.704038,-3.599829 -0.811987,-7.332039 -0.547053,-10.990489 0.330301,-4.561108 1.290075,-9.094528 2.649101,-13.460978 2.823416,-9.07142 11.339256,-26.14924 11.339256,-26.14924 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3667);fill-opacity:1;stroke:none;stroke-width:2.08484px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+  <ellipse
+     ry="16.949152"
+     rx="23.59322"
+     cy="-117.9661"
+     cx="84.610168"
+     id="path4951-9"
+     style="opacity:0.722013;fill:#54a3d8;fill-opacity:1;paint-order:markers stroke fill" />
+  <path
+     sodipodi:nodetypes="cscccsscssccsccscsscscc"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4555);fill-opacity:1;stroke:none;stroke-width:0.953063px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 26.423916,6.0034367 c 0,0 -0.08944,0.1357727 -0.133948,0.2040918 -1.068545,1.6400262 -2.05821,3.4463001 -2.968764,5.4180115 -1.123456,2.476766 -1.966114,5.052138 -2.527845,7.727043 -0.604934,2.6749 -0.863547,5.127245 -0.777128,7.356334 0.129627,2.179551 0.539533,4.012756 1.23089,5.498816 0.691361,1.486051 1.641343,2.550893 2.851214,3.194851 1.209878,0.643961 2.636581,0.766986 4.278559,0.370708 1.598759,-0.396285 3.220414,-1.259195 4.860971,-2.598933 0.300582,-0.245464 2.001253,-1.912743 3.170162,-3.203309 C 37.334805,28.947813 37.773974,28.255161 38,28.032792 l -0.04668,-4.479411 c -0.144311,0.128914 -0.488774,0.755423 -1.33232,1.659657 -1.040329,1.115169 -2.614682,2.544873 -2.798985,2.685729 -1.296298,0.941171 -2.550595,1.485693 -3.760473,1.634296 -1.253085,0.148612 -2.310387,-0.09946 -3.174583,-0.743405 -0.864196,-0.643958 -1.53445,-1.609973 -2.009759,-2.897891 -0.4321,-1.287915 -0.648478,-2.822664 -0.648478,-4.605929 0,-1.832804 0.258609,-3.815238 0.777131,-5.945257 0.518516,-2.13001 1.253858,-4.160868 2.204474,-6.0927441 0.543957,-1.1337965 1.115934,-2.186709 1.716248,-3.1584942 C 28.945025,6.0594853 28.981995,6 28.981995,6 Z"
+     id="path1334" />
+  <g
+     id="g5146-1"
+     transform="matrix(0.27673794,-0.02120127,0.02120127,0.27673794,-2.010413,43.079561)">
+    <path
+       inkscape:connector-curvature="0"
+       id="path5051-2"
+       d="M 37.97786,-38.653673 151.49846,-68.9514"
+       style="fill:none;stroke:#000000;stroke-width:4.9;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="caac"
+       inkscape:connector-curvature="0"
+       id="path5049-7"
+       d="m 42.47186,-17.328636 c 0,0 18.062638,-19.298941 29.526179,-25.386992 13.932324,-7.39917 29.911571,-11.502949 45.658231,-12.451571 13.54782,-0.816157 40.28454,5.919505 40.28454,5.919505"
+       style="fill:none;stroke:#000000;stroke-width:4.9;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="sssssss"
+       inkscape:connector-curvature="0"
+       id="path5100-3-0"
+       d="m 147.76262,-59.888663 c 0,1.938665 -6.87726,8.291678 -15.11752,11.206692 -7.42238,2.625689 -18.67638,1.640245 -21.72417,1.640245 -6.43143,0 -8.82709,-9.037702 -8.82709,-12.722612 -1e-5,-3.68491 9.06778,-10.194667 17.40552,-13.427122 1.55457,-0.602691 17.46792,-1.35819 18.8314,-1.287751 12.70291,0.656246 9.43186,11.860931 9.43186,14.590548 z"
+       style="opacity:0.512;fill:#3daee9;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
+    <path
+       sodipodi:nodetypes="aacasaaa"
+       inkscape:connector-curvature="0"
+       id="path5061-9"
+       d="m 102.2782,-60.228356 c -0.60757,3.829423 0.77005,8.659941 3.88978,10.962305 6.78749,5.009168 22.55005,2.216166 25.2852,1.055797 2.73516,-1.160368 13.72675,-4.892486 15.99651,-10.940618 1.78465,-4.755466 0.0414,-13.717213 -3.81264,-14.753257 -4.46516,-1.200312 -13.07989,-1.581009 -19.4282,-0.297202 -6.03227,1.219894 -12.05668,3.637101 -16.90061,7.433511 -2.1645,1.696415 -4.59911,3.823368 -5.03004,6.539464 z"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="sssssss"
+       inkscape:connector-curvature="0"
+       id="path5100-36"
+       d="m 86.861875,-44.439054 c -10e-7,1.938665 -7.62322,9.28628 -15.863481,12.201294 -7.422385,2.625689 -16.604291,2.593405 -19.652085,2.593405 -6.431426,0 -10.567642,-9.037702 -10.567642,-12.722612 -10e-7,-3.68491 10.93266,-11.728012 19.270406,-14.960467 1.554572,-0.602691 15.147181,-1.35819 16.510662,-1.287751 12.702903,0.656246 10.30214,11.446514 10.30214,14.176131 z"
+       style="opacity:0.512;fill:#3daee9;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
+    <path
+       sodipodi:nodetypes="aacasaaa"
+       inkscape:connector-curvature="0"
+       id="path5061-4-0"
+       d="m 84.117934,-56.130854 c 2.546348,2.923993 3.940836,7.749669 2.517458,11.356272 -3.096799,7.846759 -17.94056,13.840248 -20.874707,14.307424 -2.93416,0.467186 -14.231627,3.133831 -19.363947,-0.789305 -4.035396,-3.084642 -7.311322,-11.606386 -4.593742,-14.529017 3.148503,-3.386049 10.249438,-8.278414 16.312008,-10.557532 5.760759,-2.165659 12.149963,-3.312164 18.270043,-2.663312 2.734743,0.289935 5.92684,0.801567 7.732887,2.87547 z"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       id="path5098-6"
+       d="m 84.375371,-55.172465 c 0,0 2.214702,-4.44471 8.34746,-6.211085 6.201675,-1.786224 9.886899,1.403844 9.886899,1.403844"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+  </g>
+  <path
+     sodipodi:nodetypes="cccccccc"
+     style="opacity:0.2;fill:url(#linearGradient4884);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 21.018399,27.909047 -2.456905,3.689665 -1.653969,1.093241 -2.43531,0.958741 -3.569007,0.112704 8.612945,8.101207 15.056975,-0.0071 z"
+     id="path1340" />
+  <path
+     id="path1340-0"
+     d="m 37.372648,22.081305 -0.143424,2.17635 -2.313481,1.513315 -1.653969,1.093241 -2.378851,0.50744 -3.625466,0.564005 12.585383,12.95426 0.08067,-15.987192 z"
+     style="opacity:0.2;fill:url(#linearGradient4884-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     sodipodi:nodetypes="ccccccccc" />
 </svg>
diff -pruN 4:5.94.0-1/icons/apps/48/okular.svg 4:5.96.0-1/icons/apps/48/okular.svg
--- 4:5.94.0-1/icons/apps/48/okular.svg	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/icons/apps/48/okular.svg	2022-07-02 14:28:29.000000000 +0000
@@ -1,41 +1,430 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1">
- <defs>
-  <linearGradient id="linearGradient5022">
-   <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0"/>
-   <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4159" id="linearGradient4158" x1="409.571" y1="543.798" x2="409.571" y2="503.798" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1250015,0,0,1,-51.071966,0)"/>
-  <linearGradient id="linearGradient4143">
-   <stop style="stop-color:#197cf1;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#20bcfa;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4143" id="linearGradient4555" x1="35" y1="44" x2="35" y2="7" gradientUnits="userSpaceOnUse"/>
-  <linearGradient id="linearGradient4159">
-   <stop style="stop-color:#1d1e1e;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#44484c;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="linearGradient4435">
-   <stop style="stop-color:#c61423;stop-opacity:1" offset="0"/>
-   <stop style="stop-color:#dc2b41;stop-opacity:1" offset="1"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient4435" id="linearGradient4866" x1="396.571" y1="520.798" x2="396.571" y2="503.798" gradientUnits="userSpaceOnUse"/>
-  <linearGradient xlink:href="#linearGradient4227" id="linearGradient4884" x1="8" y1="4" x2="22" y2="18" gradientUnits="userSpaceOnUse"/>
-  <linearGradient id="linearGradient4227">
-   <stop offset="0" style="stop-color:#292c2f;stop-opacity:1"/>
-   <stop offset="1" style="stop-color:#000000;stop-opacity:0;"/>
-  </linearGradient>
-  <linearGradient xlink:href="#linearGradient5022" id="linearGradient5028" x1="396.571" y1="527.798" x2="396.571" y2="504.798" gradientUnits="userSpaceOnUse"/>
- </defs>
- <g transform="translate(-384.57143,-499.798)">
-  <rect style="opacity:1;fill:url(#linearGradient4158);fill-opacity:1.0;stroke:none" width="36" height="40" x="390.57" y="503.8" ry="0"/>
-  <path style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4555);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 42 6.7070312 C 40.903061 7.1602802 39.805921 7.7557544 38.708984 8.5351562 C 36.864351 9.8458162 35.117264 11.496061 33.466797 13.486328 C 31.864877 15.428048 30.408316 17.637588 29.097656 20.113281 C 27.835536 22.540435 26.888873 25.06422 26.257812 27.685547 C 25.578213 30.306867 25.287679 32.710091 25.384766 34.894531 C 25.530392 37.030425 25.990891 38.82691 26.767578 40.283203 C 27.544271 41.73949 28.611503 42.783002 29.970703 43.414062 C 31.32991 44.045122 32.932704 44.165684 34.777344 43.777344 C 36.57343 43.388997 38.393641 42.541129 40.238281 41.230469 C 40.842095 40.796962 41.425815 40.322841 42 39.830078 L 42 35.259766 C 41.637935 35.5419 41.269467 35.81059 40.894531 36.060547 C 39.438238 36.982867 38.029129 37.516483 36.669922 37.662109 C 35.262175 37.807743 34.074376 37.564654 33.103516 36.933594 C 32.132656 36.302534 31.379676 35.35587 30.845703 34.09375 C 30.36027 32.83163 30.117188 31.327625 30.117188 29.580078 C 30.117187 27.783985 30.407714 25.84126 30.990234 23.753906 C 31.572748 21.66656 32.39885 19.676383 33.466797 17.783203 C 34.534744 15.841483 35.698818 14.14184 36.960938 12.685547 C 38.271604 11.180714 39.631316 9.9672419 41.039062 9.0449219 C 41.360608 8.8305578 41.680821 8.6448356 42 8.4707031 L 42 6.7070312 z" transform="translate(384.57143,499.798)"/>
-  <rect style="opacity:1;fill:#080809;fill-opacity:1;stroke:none" width="36" height="1" x="390.57" y="542.8"/>
-  <rect style="opacity:0.6;fill:#080809;fill-opacity:1;stroke:none;stroke-opacity:1" width="2" height="40" x="390.57" y="503.8"/>
-  <path style="fill:url(#linearGradient4884);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.2" d="M 16 4 L 16 18 L 16 21 L 12 18.691406 L 8 21 L 31 44 L 42 44 L 42 30 L 16 4 z" transform="translate(384.57143,499.798)"/>
-  <rect style="opacity:1;fill:#8b8f8f;fill-opacity:1;stroke:none;stroke-opacity:1" width="34" height="1" x="392.57" y="541.8"/>
-  <rect style="opacity:1;fill:#212323;fill-opacity:0.45197742;stroke:none;stroke-opacity:1" width="34" height="1" x="392.57" y="540.8"/>
-  <path style="opacity:1;fill:url(#linearGradient4866);fill-opacity:1;stroke:none;stroke-opacity:1" d="m 392.57143,503.798 0,17 4,-2.30859 4,2.30859 0,-17 -8,0 z"/>
-  <path style="opacity:0.15;fill:url(#linearGradient5028);fill-opacity:1;stroke:none;stroke-opacity:1" d="m 393.57144,503.798 6,0 0,15 -3,-2 -3,2 z"/>
- </g>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+   sodipodi:docname="okular.svg"
+   viewBox="0 0 48 48"
+   height="48"
+   width="48"
+   id="svg3040"
+   version="1.1">
+  <metadata
+     id="metadata3046">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3044">
+    <linearGradient
+       id="linearGradient788">
+      <stop
+         style="stop-color:#f7f7f7;stop-opacity:1;"
+         offset="0"
+         id="stop784" />
+      <stop
+         style="stop-color:#f7f7f7;stop-opacity:0.392"
+         offset="1"
+         id="stop786" />
+    </linearGradient>
+    <linearGradient
+       y2="7"
+       x2="35"
+       y1="44"
+       x1="35"
+       gradientTransform="matrix(2.0848431,0,0,2.0848431,23.654883,-157.19887)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3667"
+       xlink:href="#linearGradient4143"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient4143">
+      <stop
+         id="stop1180"
+         offset="0"
+         style="stop-color:#197cf1;stop-opacity:1" />
+      <stop
+         id="stop1182"
+         offset="1"
+         style="stop-color:#20bcfa;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="5.4949999"
+       x2="30.045"
+       y1="10.71"
+       x1="34.237"
+       id="linearGradient4483"
+       xlink:href="#linearGradient788"
+       gradientTransform="matrix(2.2357723,0,0,2.2357723,-19.866555,-10.798983)" />
+    <linearGradient
+       id="linearGradient4477">
+      <stop
+         id="stop3986"
+         offset="0"
+         style="stop-color:#f7f7f7;stop-opacity:1;" />
+      <stop
+         id="stop3988"
+         offset="1"
+         style="stop-color:#f7f7f7;stop-opacity:0.392" />
+    </linearGradient>
+    <linearGradient
+       xlink:href="#linearGradient4485"
+       gradientTransform="matrix(2.1868346,0.45888721,-0.44661079,2.192088,438.55318,-2222.385)"
+       x2="0"
+       gradientUnits="userSpaceOnUse"
+       y2="1012.95"
+       y1="1040.95"
+       id="e">
+      <stop
+         id="stop4002"
+         stop-color="#f2f2f2" />
+      <stop
+         id="stop4004"
+         stop-color="#ffffff"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="5.4949999"
+       x2="30.045"
+       y1="10.71"
+       x1="34.237"
+       id="linearGradient4483-2"
+       xlink:href="#linearGradient4477"
+       gradientTransform="translate(-25.534062,-47.872155)" />
+    <linearGradient
+       gradientTransform="matrix(1,0,0,0.9661017,-25.534062,-1017.9827)"
+       x2="0"
+       gradientUnits="userSpaceOnUse"
+       y2="1012.95"
+       y1="1040.95"
+       id="e-8">
+      <stop
+         id="stop4002-7"
+         stop-color="#f2f2f2" />
+      <stop
+         id="stop4004-9"
+         stop-color="#ffffff"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="3.1719999"
+       x2="13"
+       y1="44.006001"
+       x1="13"
+       id="linearGradient4491"
+       xlink:href="#linearGradient4485"
+       gradientTransform="translate(-25.534062,-47.872155)" />
+    <linearGradient
+       id="linearGradient4485">
+      <stop
+         id="stop3981"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop3983"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0.384" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       y1="40"
+       y2="6"
+       gradientUnits="userSpaceOnUse"
+       x2="0"
+       gradientTransform="matrix(0.69597654,0,0,0.68423827,-7.3401807,-10.191357)">
+      <stop
+         stop-color="#b1b1b1"
+         id="stop570" />
+      <stop
+         offset="1"
+         stop-color="#dddddd"
+         id="stop572" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,-5.8537563,-13.196481)"
+       xlink:href="#b"
+       id="d"
+       y1="21"
+       x1="23"
+       y2="39"
+       gradientUnits="userSpaceOnUse"
+       x2="40" />
+    <linearGradient
+       id="b"
+       y1="11"
+       x1="17"
+       y2="41"
+       gradientUnits="userSpaceOnUse"
+       x2="44"
+       gradientTransform="translate(0,1004.36)">
+      <stop
+         id="stop565" />
+      <stop
+         offset="1"
+         stop-opacity="0"
+         id="stop567" />
+    </linearGradient>
+    <linearGradient
+       id="e-6"
+       y1="1040.95"
+       y2="1012.95"
+       gradientUnits="userSpaceOnUse"
+       x2="0"
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,145.49123,-751.57629)">
+      <stop
+         stop-color="#f2f2f2"
+         id="stop576" />
+      <stop
+         offset="1"
+         stop-color="#ffffff"
+         id="stop578" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.7394723,0,0,0.75045874,-8.3843157,-11.752311)"
+       xlink:href="#linearGradient4485"
+       id="linearGradient4491-2"
+       x1="13"
+       y1="44.006001"
+       x2="13"
+       y2="3.1719999"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientTransform="matrix(0.72441175,0.14848198,-0.15068799,0.73517444,-5.8537563,-13.196481)"
+       xlink:href="#linearGradient788"
+       id="linearGradient4483-9"
+       x1="34.237"
+       y1="10.71"
+       x2="30.045"
+       y2="5.4949999"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientTransform="matrix(-0.72441175,-0.14848198,0.15068799,-0.73517444,46.373033,26.618705)"
+       x2="49"
+       gradientUnits="userSpaceOnUse"
+       y2="20.735001"
+       x1="49.088001"
+       y1="26.497"
+       id="d-3">
+      <stop
+         id="stop581" />
+      <stop
+         stop-opacity="0"
+         stop-color="#655c6f"
+         offset="1"
+         id="stop583" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.89013508,0,0,1.0204399,-2.5796396,-8.898851)"
+       xlink:href="#linearGradient4143"
+       id="linearGradient4555"
+       x1="35"
+       y1="44"
+       x2="35"
+       y2="7"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4143"
+       id="linearGradient3667-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.66090133,0,0,0.69246156,1.9087578,-1.3071134)"
+       x1="35"
+       y1="44"
+       x2="35"
+       y2="7" />
+    <linearGradient
+       gradientTransform="translate(2.9032089,12.763397)"
+       xlink:href="#linearGradient4227"
+       id="linearGradient4884"
+       x1="8"
+       y1="4"
+       x2="22"
+       y2="18"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4227">
+      <stop
+         offset="0"
+         style="stop-color:#292c2f;stop-opacity:1"
+         id="stop1324" />
+      <stop
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;"
+         id="stop1326" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="18"
+       x2="22"
+       y1="4"
+       x1="8"
+       id="linearGradient4884-7"
+       xlink:href="#linearGradient4227"
+       gradientTransform="translate(19.257458,6.9356545)" />
+  </defs>
+  <sodipodi:namedview
+     inkscape:document-rotation="0"
+     inkscape:current-layer="svg3040"
+     inkscape:window-maximized="1"
+     inkscape:window-y="0"
+     inkscape:window-x="0"
+     inkscape:cy="34.380946"
+     inkscape:cx="25.379255"
+     inkscape:zoom="8.5811658"
+     inkscape:snap-global="false"
+     showgrid="true"
+     id="namedview3042"
+     inkscape:window-height="1011"
+     inkscape:window-width="1920"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     guidetolerance="10"
+     gridtolerance="10"
+     objecttolerance="10"
+     borderopacity="1"
+     bordercolor="#666666"
+     pagecolor="#ffffff">
+    <inkscape:grid
+       id="grid154"
+       type="xygrid" />
+  </sodipodi:namedview>
+  <g
+     transform="matrix(1.3247736,-0.26756236,0.27153756,1.3053794,11.338242,15.660171)"
+     id="g4738">
+    <rect
+       transform="rotate(11.583424)"
+       width="23.663115"
+       x="-2.4685373"
+       y="-8.7504768"
+       height="30.018351"
+       style="fill:url(#c);fill-rule:evenodd;stroke-width:0.744945"
+       ry="0.75045872"
+       rx="0.73947233"
+       id="rect590" />
+    <path
+       d="M 16.098435,19.647289 -4.9385343,19.165666 -3.9405356,20.874002 16.489545,25.08988 21.914312,-1.3764004 20.766865,-3.1437133 Z"
+       style="opacity:0.2;fill:url(#d);fill-rule:evenodd;stroke-width:0.744945"
+       id="path592" />
+    <path
+       d="M 0.48623319,-7.3006146 -4.9385343,19.165666 15.344995,23.323161 20.769763,-3.1431193 Z"
+       style="fill:url(#e-6);fill-rule:evenodd;stroke-width:0.744945"
+       id="path594" />
+    <rect
+       transform="rotate(11.583424)"
+       width="20.705225"
+       x="-0.98959297"
+       y="19.016499"
+       height="0.76246613"
+       style="opacity:0.437;fill:#1b1b1b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.744945"
+       id="rect596" />
+    <rect
+       transform="rotate(11.583424)"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.082;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4491-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.744945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       width="0.73947233"
+       height="26.266056"
+       x="0.48935133"
+       y="-7.2495589"
+       id="rect630" />
+    <path
+       d="m 15.698873,-4.1824947 4.016066,6.185595 1.054816,-5.1462211 z"
+       style="fill:#fdfdfd;fill-opacity:1;fill-rule:evenodd;stroke-width:0.744945"
+       id="path654" />
+    <rect
+       transform="rotate(11.583424)"
+       y="-7.2495589"
+       x="-0.98959297"
+       height="26.266056"
+       width="1.4789447"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.373;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.744945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="rect656" />
+  </g>
+  <path
+     sodipodi:nodetypes="csaaasaccaaaaaaacc"
+     inkscape:connector-curvature="0"
+     id="path1208-2"
+     d="m 88.799742,-135.25436 c 0,0 -10.903645,16.83943 -13.868168,28.83981 -2.063861,8.354498 -2.109708,17.519333 0.174276,25.816357 1.186634,4.310683 3.531157,8.504775 6.78652,11.569525 3.206355,3.018613 7.512397,4.889158 11.777469,5.98547 4.308445,1.107461 8.921561,0.971445 13.338241,0.440295 10.11174,-1.216039 18.01577,-3.65239 25.18264,-8.94237 2.59849,-1.918 5.78861,-7.76979 5.78861,-7.76979 l -0.0292,-12.653119 c 0,0 -6.15665,11.541499 -10.90263,15.856579 -4.46064,4.05565 -9.92848,7.45539 -15.80839,8.78663 -4.26599,0.96585 -9.0283,0.79324 -13.096653,-0.81299 -3.070302,-1.21218 -5.749849,-3.59572 -7.637172,-6.30388 -2.063652,-2.96118 -2.882888,-6.67835 -3.575659,-10.22057 -0.704038,-3.599829 -0.811987,-7.332039 -0.547053,-10.990489 0.330301,-4.561108 1.290075,-9.094528 2.649101,-13.460978 2.823416,-9.07142 11.339256,-26.14924 11.339256,-26.14924 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3667);fill-opacity:1;stroke:none;stroke-width:2.08484px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+  <ellipse
+     ry="16.949152"
+     rx="23.59322"
+     cy="-117.9661"
+     cx="84.610168"
+     id="path4951-9"
+     style="opacity:0.722013;fill:#54a3d8;fill-opacity:1;paint-order:markers stroke fill" />
+  <path
+     sodipodi:nodetypes="cscccsscssccsccscsscscc"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:'Impregnable Personal Use Only';-inkscape-font-specification:'Impregnable Personal Use Only';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4555);fill-opacity:1;stroke:none;stroke-width:0.953063px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 26.423916,6.0034367 c 0,0 -0.08944,0.1357727 -0.133948,0.2040918 -1.068545,1.6400262 -2.05821,3.4463001 -2.968764,5.4180115 -1.123456,2.476766 -1.966114,5.052138 -2.527845,7.727043 -0.604934,2.6749 -0.863547,5.127245 -0.777128,7.356334 0.129627,2.179551 0.539533,4.012756 1.23089,5.498816 0.691361,1.486051 1.641343,2.550893 2.851214,3.194851 1.209878,0.643961 2.636581,0.766986 4.278559,0.370708 1.598759,-0.396285 3.220414,-1.259195 4.860971,-2.598933 0.300582,-0.245464 2.001253,-1.912743 3.170162,-3.203309 C 37.334805,28.947813 37.773974,28.255161 38,28.032792 l -0.04668,-4.479411 c -0.144311,0.128914 -0.488774,0.755423 -1.33232,1.659657 -1.040329,1.115169 -2.614682,2.544873 -2.798985,2.685729 -1.296298,0.941171 -2.550595,1.485693 -3.760473,1.634296 -1.253085,0.148612 -2.310387,-0.09946 -3.174583,-0.743405 -0.864196,-0.643958 -1.53445,-1.609973 -2.009759,-2.897891 -0.4321,-1.287915 -0.648478,-2.822664 -0.648478,-4.605929 0,-1.832804 0.258609,-3.815238 0.777131,-5.945257 0.518516,-2.13001 1.253858,-4.160868 2.204474,-6.0927441 0.543957,-1.1337965 1.115934,-2.186709 1.716248,-3.1584942 C 28.945025,6.0594853 28.981995,6 28.981995,6 Z"
+     id="path1334" />
+  <g
+     id="g5146-1"
+     transform="matrix(0.27673794,-0.02120127,0.02120127,0.27673794,-2.010413,43.079561)">
+    <path
+       inkscape:connector-curvature="0"
+       id="path5051-2"
+       d="M 37.97786,-38.653673 151.49846,-68.9514"
+       style="fill:none;stroke:#000000;stroke-width:4.9;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="caac"
+       inkscape:connector-curvature="0"
+       id="path5049-7"
+       d="m 42.47186,-17.328636 c 0,0 18.062638,-19.298941 29.526179,-25.386992 13.932324,-7.39917 29.911571,-11.502949 45.658231,-12.451571 13.54782,-0.816157 40.28454,5.919505 40.28454,5.919505"
+       style="fill:none;stroke:#000000;stroke-width:4.9;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="sssssss"
+       inkscape:connector-curvature="0"
+       id="path5100-3-0"
+       d="m 147.76262,-59.888663 c 0,1.938665 -6.87726,8.291678 -15.11752,11.206692 -7.42238,2.625689 -18.67638,1.640245 -21.72417,1.640245 -6.43143,0 -8.82709,-9.037702 -8.82709,-12.722612 -1e-5,-3.68491 9.06778,-10.194667 17.40552,-13.427122 1.55457,-0.602691 17.46792,-1.35819 18.8314,-1.287751 12.70291,0.656246 9.43186,11.860931 9.43186,14.590548 z"
+       style="opacity:0.512;fill:#3daee9;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
+    <path
+       sodipodi:nodetypes="aacasaaa"
+       inkscape:connector-curvature="0"
+       id="path5061-9"
+       d="m 102.2782,-60.228356 c -0.60757,3.829423 0.77005,8.659941 3.88978,10.962305 6.78749,5.009168 22.55005,2.216166 25.2852,1.055797 2.73516,-1.160368 13.72675,-4.892486 15.99651,-10.940618 1.78465,-4.755466 0.0414,-13.717213 -3.81264,-14.753257 -4.46516,-1.200312 -13.07989,-1.581009 -19.4282,-0.297202 -6.03227,1.219894 -12.05668,3.637101 -16.90061,7.433511 -2.1645,1.696415 -4.59911,3.823368 -5.03004,6.539464 z"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="sssssss"
+       inkscape:connector-curvature="0"
+       id="path5100-36"
+       d="m 86.861875,-44.439054 c -10e-7,1.938665 -7.62322,9.28628 -15.863481,12.201294 -7.422385,2.625689 -16.604291,2.593405 -19.652085,2.593405 -6.431426,0 -10.567642,-9.037702 -10.567642,-12.722612 -10e-7,-3.68491 10.93266,-11.728012 19.270406,-14.960467 1.554572,-0.602691 15.147181,-1.35819 16.510662,-1.287751 12.702903,0.656246 10.30214,11.446514 10.30214,14.176131 z"
+       style="opacity:0.512;fill:#3daee9;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
+    <path
+       sodipodi:nodetypes="aacasaaa"
+       inkscape:connector-curvature="0"
+       id="path5061-4-0"
+       d="m 84.117934,-56.130854 c 2.546348,2.923993 3.940836,7.749669 2.517458,11.356272 -3.096799,7.846759 -17.94056,13.840248 -20.874707,14.307424 -2.93416,0.467186 -14.231627,3.133831 -19.363947,-0.789305 -4.035396,-3.084642 -7.311322,-11.606386 -4.593742,-14.529017 3.148503,-3.386049 10.249438,-8.278414 16.312008,-10.557532 5.760759,-2.165659 12.149963,-3.312164 18.270043,-2.663312 2.734743,0.289935 5.92684,0.801567 7.732887,2.87547 z"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       id="path5098-6"
+       d="m 84.375371,-55.172465 c 0,0 2.214702,-4.44471 8.34746,-6.211085 6.201675,-1.786224 9.886899,1.403844 9.886899,1.403844"
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+  </g>
+  <path
+     sodipodi:nodetypes="cccccccc"
+     style="opacity:0.2;fill:url(#linearGradient4884);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="m 21.018399,27.909047 -2.456905,3.689665 -1.653969,1.093241 -2.43531,0.958741 -3.569007,0.112704 8.612945,8.101207 15.056975,-0.0071 z"
+     id="path1340" />
+  <path
+     id="path1340-0"
+     d="m 37.372648,22.081305 -0.143424,2.17635 -2.313481,1.513315 -1.653969,1.093241 -2.378851,0.50744 -3.625466,0.564005 12.585383,12.95426 0.08067,-15.987192 z"
+     style="opacity:0.2;fill:url(#linearGradient4884-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     sodipodi:nodetypes="ccccccccc" />
 </svg>
diff -pruN 4:5.94.0-1/icons/index.theme 4:5.96.0-1/icons/index.theme
--- 4:5.94.0-1/icons/index.theme	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/icons/index.theme	2022-07-02 14:28:29.000000000 +0000
@@ -24,6 +24,7 @@ Name[ia]=Breeze
 Name[id]=Breeze
 Name[it]=Brezza
 Name[ja]=Breeze
+Name[ka]=Breeze
 Name[ko]=Breeze
 Name[lt]=Breeze
 Name[nl]=Breeze
@@ -40,6 +41,7 @@ Name[sr@ijekavian]=Поветарац
 Name[sr@ijekavianlatin]=Povetarac
 Name[sr@latin]=Povetarac
 Name[sv]=Breeze
+Name[ta]=பிரீஸ்
 Name[tg]=Насим
 Name[tr]=Esinti
 Name[uk]=Breeze
@@ -72,6 +74,7 @@ Comment[ia]=Breeze (Brisa) per le KDE VD
 Comment[id]=Breeze oleh KDE VDG
 Comment[it]=Brezza del KDE VDG
 Comment[ja]=KDE VDG による Breeze
+Comment[ka]=Breeze KDE VDG-სგან
 Comment[ko]=KDE 시각 디자인 그룹에서 제작한 Breeze
 Comment[lt]=Breeze pagal KDE VDG
 Comment[nl]=Breeze door de KDE VDG
diff -pruN 4:5.94.0-1/icons-dark/actions/16/edit-image.svg 4:5.96.0-1/icons-dark/actions/16/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/16/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/16/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/16/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/16/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/16@2x/edit-image.svg 4:5.96.0-1/icons-dark/actions/16@2x/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/16@2x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16@2x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/16@2x/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/16@2x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/16@2x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16@2x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/16@3x/edit-image.svg 4:5.96.0-1/icons-dark/actions/16@3x/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/16@3x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16@3x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,13 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 2 2 L 2 13.28125 L 2 14 L 7 14 L 7 13 L 7 12 L 8 11 L 9 10 L 10 9 L 11 8 L 11.5 7.5 L 11 7 L 7.65625 10.34375 L 6.3125 9 L 6.28125 9 L 3 12.28125 L 3 3 L 13 3 L 13 8 L 14 8 L 14 2 L 2 2 z M 6 4 C 4.8954305 4 4 4.8954305 4 6 C 4 7.1045695 4.8954305 8 6 8 C 7.1045695 8 8 7.1045695 8 6 C 8 4.8954305 7.1045695 4 6 4 z M 12 8 L 11 9 L 10 10 L 8 12 L 8 13 L 8 14 L 10 14 L 10.59375 13.40625 L 11 13 L 12 12 L 13 11 L 14 10 L 12 8 z M 11.6875 9.6875 L 12.28125 10.28125 L 12 10.5625 L 10.59375 11.96875 L 10.59375 12 L 9.3125 13.28125 L 8.71875 12.6875 L 10.59375 10.78125 L 11.6875 9.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/16@3x/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/16@3x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/16@3x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/16@3x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m2 2v12h12v-12zm4 1h7v10h-7z"/>
+        <path d="m8.3530312 4.6464844-.7070312.7070312 2.646484 2.6464844-2.646484 2.646484.7070312.707032 3.3535158-3.353516z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22/edit-image.svg 4:5.96.0-1/icons-dark/actions/22/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/22/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/22/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/22/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22@2x/edit-image.svg 4:5.96.0-1/icons-dark/actions/22@2x/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/22@2x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22@2x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22@2x/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/22@2x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/22@2x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22@2x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22@3x/edit-image.svg 4:5.96.0-1/icons-dark/actions/22@3x/edit-image.svg
--- 4:5.94.0-1/icons-dark/actions/22@3x/edit-image.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22@3x/edit-image.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
+  <defs id="defs3051">
+    <style type="text/css" id="current-color-scheme">
+      .ColorScheme-Text {
+        color:#eff0f1;
+      }
+      </style>
+  </defs>
+ <path 
+     style="fill:currentColor;fill-opacity:1;stroke:none" 
+     d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
+     class="ColorScheme-Text"
+     />
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/actions/22@3x/sidebar-show-symbolic.svg 4:5.96.0-1/icons-dark/actions/22@3x/sidebar-show-symbolic.svg
--- 4:5.94.0-1/icons-dark/actions/22@3x/sidebar-show-symbolic.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/actions/22@3x/sidebar-show-symbolic.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,11 @@
+<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" fill="currentColor">
+        <path d="m3 3v16h16v-16zm5 1h10v14h-10z" stroke-linecap="square" stroke-linejoin="round"/>
+        <path d="m11.353516 6.6464844 4.353515 4.3535156-4.353515 4.353516-.707032-.707032 3.646485-3.646484-3.646485-3.6464844z"/>
+    </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/applets/256/org.kde.plasma.analogclock.svg 4:5.96.0-1/icons-dark/applets/256/org.kde.plasma.analogclock.svg
--- 4:5.94.0-1/icons-dark/applets/256/org.kde.plasma.analogclock.svg	1970-01-01 00:00:00.000000000 +0000
+++ 4:5.96.0-1/icons-dark/applets/256/org.kde.plasma.analogclock.svg	2022-07-02 14:28:29.000000000 +0000
@@ -0,0 +1,113 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 256 256">
+ <defs>
+  <filter height="1.905" y="-.453" width="1.123" x="-.061" id="2" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation=".51095"/>
+  </filter>
+  <filter height="1.118" y="-.059" width="1.206" x="-.103" id="1" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation=".87589"/>
+  </filter>
+  <filter height="1.123" y="-.061" width="1.905" x="-.453" id="3" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation=".51095"/>
+  </filter>
+  <linearGradient id="0">
+   <stop stop-color="#232629"/>
+   <stop offset=".9" stop-color="#232629" stop-opacity=".523"/>
+   <stop offset=".96" stop-color="#232629" stop-opacity=".107"/>
+   <stop offset="1" stop-color="#232629" stop-opacity="0"/>
+  </linearGradient>
+  <radialGradient r="104" cy="855.36" cx="1007" gradientUnits="userSpaceOnUse" id="4" xlink:href="#0"/>
+  <style id="current-color-scheme" type="text/css">
+   .ColorScheme-Text {
+     color:#f2f2f2;
+   }
+   .ColorScheme-Background {
+     color:#31363b;
+   }
+   .ColorScheme-Highlight {
+     color:#3daee9;
+   }
+   .ColorScheme-ViewText {
+     color:#f2f2f2;
+   }
+   .ColorScheme-ViewBackground {
+     color:#31363b;
+   }
+   .ColorScheme-ViewHover {
+     color:#93cee9;
+   }
+   .ColorScheme-ViewFocus{
+     color:#3daee9;
+   }
+   .ColorScheme-ButtonText {
+     color:#31363b;
+   }
+   .ColorScheme-ButtonBackground {
+     color:#31363b;
+   }
+   .ColorScheme-ButtonHover {
+     color:#93cee9;
+   }
+   .ColorScheme-ButtonFocus{
+     color:#3daee9;
+   }
+  </style>
+ </defs>
+ <g transform="matrix(1.08344 0 0 1.08344-963.2-796.49)">
+  <path opacity=".005" fill="#717171" d="m900 746.36h214v214h-214z"/>
+  <circle cx="1007" cy="855.36" r="104" fill="url(#4)"/>
+  <circle r="96.61" cy="853.36" cx="1007" style="fill:currentColor;fill-opacity:1" class="ColorScheme-Background"/>
+  <path
+      d="m963.39 776.51l-.844.5 2.094 3.594c.278-.163.564-.308.844-.469zm87.87 0l-2.031 3.531c.293.167.585.33.875.5l2.031-3.531zm-95.69 5.03l-.813.563 2.469 3.406c.269-.199.541-.398.813-.594zm103.5 0l-2.375 3.281c.267.192.548.368.813.563l2.375-3.281zm-110.75 5.813l-.719.656 2.781 3.094c.24-.219.508-.408.75-.625zm118 0l-2.719 3c.248.221.505.432.75.656l2.719-3zm-124.59 6.531l-.656.75 3.125 2.813c.219-.247.434-.505.656-.75zm131.19 0l-3 2.688c.233.255.458.523.687.781l3-2.719zm-137.06 7.188l-.594.781 3.438 2.5c.192-.268.367-.547.563-.813zm142.94 0l-3.25 2.375c.19.259.375.52.562.781l3.281-2.375zm-148.06 7.75l-.5.875 3.688 2.125c.166-.292.331-.585.5-.875zm153.19 0l-3.5 2.031c.17.29.333.582.5.875l3.5-2.031zm-157.44 8.25l-.406.906 3.875 1.719c.133-.305.269-.603.406-.906zm161.69 0l-3.688 1.625c.136.301.274.603.406.906l3.688-1.625zm-165.06 8.656l-.312.938 4.062 1.313c.098-.308.18-.631.281-.938zm168.44 0l-3.844 1.25c.102.31.214.626.313.938l3.844-1.25zm-170.91 8.969l-.188.969 4.156.875c.066-.324.149-.646.219-.969zm173.34 0l-3.937.844c.069.321.122.647.187.969l3.969-.844zm-174.81 9.156l-.125.969 4.281.438c.031-.322.059-.648.094-.969l-4.25-.438m176.34 0l-4.063.438c.035.321.063.647.094.969l4.062-.438-.094-.969m-172.16 18.09l-4.312.438.125 1 4.281-.438c-.037-.333-.061-.666-.094-1m168.16 0c-.033.334-.057.667-.094 1l4.094.438.094-1zm-166.84 8.719l-4.219.906.188.969 4.25-.906c-.071-.322-.152-.645-.219-.969m165.53.063c-.067.324-.148.646-.219.969l4 .844.219-.969zm-163.28 8.469l-4.125 1.344.312.969 4.125-1.344c-.107-.323-.209-.644-.312-.969m161 .063c-.104.325-.205.646-.313.969l3.938 1.281.312-.969zm-157.87 8.219l-3.969 1.781.406.906 3.969-1.781c-.138-.303-.272-.601-.406-.906m154.75.094c-.134.303-.269.605-.406.906l3.781 1.688.406-.906zm-150.75 7.781l-3.813 2.188.5.875 3.813-2.188c-.17-.289-.333-.584-.5-.875m146.75.094c-.168.292-.329.585-.5.875l3.625 2.094.5-.875zm-142 7.344l-3.531 2.563.594.813 3.531-2.563c-.199-.27-.397-.54-.594-.813m137.19.094c-.193.268-.366.547-.562.813l3.375 2.469.594-.813zm-131.62 6.781l-3.281 2.938.656.75 3.281-2.938c-.224-.246-.435-.502-.656-.75m126.09.094c-.226.253-.458.499-.688.75l3.156 2.844.687-.75zm-119.94 6.188l-2.906 3.25.719.688 2.938-3.281c-.248-.221-.504-.432-.75-.656m113.72.094c-.251.228-.496.462-.75.688l2.844 3.156.75-.688zm-106.91 5.5l-2.563 3.531.813.594 2.563-3.531c-.272-.195-.543-.395-.813-.594m100.06.094c-.27.198-.54.399-.813.594l2.5 3.438.813-.594zm-92.66 4.781l-2.187 3.781.844.5 2.188-3.813c-.28-.16-.566-.306-.844-.469m85.25.063c-.283.165-.559.338-.844.5l2.125 3.719.875-.5zm-77.44 4l-1.75 3.969.906.406 1.781-3.969c-.313-.138-.626-.265-.937-.406m69.62.094c-.308.139-.628.271-.938.406l1.719 3.875.938-.406zm-61.37 3.125l-1.344 4.156.938.313 1.344-4.156c-.314-.1-.625-.209-.937-.313m53.09.063c-.322.106-.645.21-.969.313l1.344 4.094.969-.313zm-44.594 2.25l-.906 4.25 1 .219.906-4.25c-.334-.069-.668-.146-1-.219m36.06.063c-.326.071-.641.152-.969.219l.906 4.188.969-.219zm-27.312 1.375l-.469 4.344 1 .094.438-4.313c-.325-.032-.645-.089-.969-.125m18.594.031c-.323.035-.645.062-.969.094l.437 4.313.969-.094z"
+      style="fill:currentColor;fill-opacity:.6" class="ColorScheme-ViewText"/>
+  <path
+      d="m1012.69 766.92c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871"
+      fill="#232629" filter="url(#1)" fill-opacity=".443"/>
+  <path
+      d="m1012.69 765.72c2.747 0 4.948.723 6.601 2.168 1.667 1.432 2.5 3.392 2.5 5.879 0 1.693-.436 3.288-1.309 4.785-.872 1.484-2.213 3.197-4.02 5.137l-8.262 8.809h13.03v3.01h-16.445v-3.691l9.394-10.684c1.276-1.458 2.233-2.728 2.871-3.809.651-1.094.977-2.174.977-3.242 0-1.667-.475-2.936-1.426-3.809-.951-.872-2.285-1.309-4-1.309-2.552 0-4.642.82-6.269 2.461l-1.133-3.066c1.914-1.758 4.414-2.637 7.5-2.637m-14.88 1.23h3.496v28.555h-3.496v-25.293c-1.601 1.068-3.197 1.96-4.785 2.676v-3.066c1.25-.547 2.845-1.504 4.785-2.871" style="fill:currentColor" class="ColorScheme-ButtonFocus"/>
+  <path fill="#212121" filter="url(#2)" fill-opacity=".413" d="m917.02 853.51h20v2.709h-20z"/>
+  <path style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m916.91 852.3h20v2.709h-20z"/>
+  <path fill="#1c1c1c" filter="url(#2)" fill-opacity=".361" d="m1078.12 853.51h20v2.709h-20z"/>
+  <path style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m1078.11 852.3h20v2.709h-20z"/>
+  <path transform="matrix(0 1-1 0-315.26 577.14)" fill="#2a2a2a" filter="url(#3)" fill-opacity=".524" d="m349.03-1323.93h20v2.71h-20z"/>
+  <path transform="matrix(0 1-1 0 0 0)" style="fill:currentColor" class="ColorScheme-ButtonFocus" d="m924.95-1008.76h20v2.71h-20z"/>
+  <circle r="96.61" cy="853.36" cx="1007" stroke-opacity=".677" fill="none" stroke="#70767a"/>
+  <g style="fill:currentColor" class="ColorScheme-ViewText">
+   <path d="m1079.34 810.5l4.03-2.325 1.354 2.346-4.03 2.325zm-149.43 86.28l4.03-2.325 1.355 2.346-4.03 2.325z"/>
+   <path d="m1048.11 780.27l2.325-4.03 2.346 1.355-2.325 4.03zm-86.28 149.43l2.325-4.03 2.346 1.355-2.325 4.03z"/>
+   <path d="m933.93 812.85l-4.03-2.325 1.355-2.346 4.03 2.325zm149.43 86.28l-4.03-2.325 1.354-2.346 4.03 2.325z"/>
+   <path d="m964.16 781.63l-2.325-4.03 2.346-1.355 2.325 4.03zm86.28 149.43l-2.325-4.03 2.346-1.355 2.325 4.03z"/>
+  </g>
+  <g style="fill:currentColor" class="ColorScheme-ViewText">
+   <path d="m991.72 882.95c-.188.762-.404 1.35-.65 1.764-.113.195-.225.293-.334.293-.043 0-.096-.01-.158-.029-.297-.09-.445-.197-.445-.322 0-.063.041-.104.123-.123.344-.516.547-1.135.609-1.857-.215-.191-.418-.287-.609-.287-.406-.004-.887.354-1.441 1.072-.512.672-.955 1.469-1.33 2.391-.391.961-.578 1.762-.563 2.402.004.371.115.648.334.832.16.133.342.199.545.199.117 0 .252-.023.404-.07.375-.117.809-.344 1.301-.68.469-.32.859-.646 1.172-.979.098-.105.156-.24.176-.404.012-.086.051-.129.117-.129.055 0 .096.035.123.105.141.352.211.596.211.732 0 .129-.053.25-.158.363-.07.07-.236.205-.498.404-.828.621-1.539 1.01-2.133 1.16-.184.047-.352.07-.504.07-.32 0-.564-.107-.732-.322-.762-.285-1.143-.721-1.143-1.307 0-.945.248-1.961.744-3.047.426-.941.951-1.77 1.576-2.484.602-.684 1.09-1.039 1.465-1.066.137-.012.295.045.475.17.023.016.205.162.545.439.019-.156.072-.234.158-.234.094 0 .252.086.475.258.141.109.211.215.211.316 0 .066-.021.189-.064.369"/>
+   <path d="m995.61 885.99c-.01.348-.092.809-.252 1.383-.254.906-.613 1.609-1.078 2.109-.246.266-.519.398-.82.398-.117 0-.268-.025-.451-.076-.367-.023-.666-.139-.896-.346-.25-.227-.367-.518-.351-.873.016-.414.158-.992.428-1.734.297-.809.606-1.391.926-1.746.152-.172.277-.258.375-.258.133 0 .348.137.644.41.082-.039.25-.111.504-.217.129-.043.227-.064.293-.064.152 0 .322.143.51.428.121.176.178.371.17.586m-.674.17c.027-.262.041-.428.041-.498 0-.164-.051-.246-.152-.246-.039 0-.09.008-.152.023l-.908.369c-.106.043-.166.064-.182.064-.031 0-.062-.037-.094-.111-.227.277-.438.678-.633 1.201-.152.41-.258.777-.316 1.102-.043.219-.065.418-.065.598 0 .602.186.895.557.879.148-.004.308-.063.48-.176.328-.223.635-.668.92-1.336.274-.629.441-1.252.504-1.869"/>
+   <path d="m1003.13 887.83c-.254.379-.633 1.047-1.137 2-.047.086-.076.131-.088.135-.035.019-.117.01-.246-.029-.27-.082-.404-.16-.404-.234 0-.043.018-.105.053-.188.293-.684.544-1.413.753-2.188.209-.775.31-1.37.302-1.784 0-.137-.049-.205-.146-.205-.066 0-.144.037-.234.111-.332.27-.762.793-1.289 1.57-.633.938-1.08 1.814-1.342 2.631-.027.094-.051.146-.07.158-.023.012-.08.002-.17-.029-.133-.047-.26-.113-.381-.199-.059-.043-.088-.088-.088-.135 0-.008.029-.084.088-.229.512-1.281.768-2.521.768-3.721 0-.121-.035-.182-.105-.182-.051 0-.115.033-.193.1-.418.352-.883.957-1.394 1.816-.492.82-.859 1.59-1.102 2.309-.062.184-.127.275-.193.275-.078 0-.238-.088-.481-.264-.062-.035-.094-.072-.094-.111 0-.043.043-.109.129-.199.16-.34.342-.926.545-1.758.23-.949.33-1.639.299-2.068-.059.059-.158.155-.299.29-.141.135-.246.237-.316.308-.051.051-.096.076-.135.076-.059 0-.088-.039-.088-.117 0-.063.022-.117.065-.164.219-.227.436-.494.65-.803.078-.109.146-.164.205-.164.043 0 .127.063.252.188.098.035.195.07.293.105.082.039.123.111.123.217 0 .031 0 .064-.012.1-.098.754-.248 1.457-.451 2.109.691-1.242 1.334-2.125 1.928-2.648.082-.074.162-.111.24-.111.082 0 .207.053.375.158.16.07.266.133.316.188.059.07.088.18.088.328 0 .797-.092 1.506-.275 2.127.762-1.207 1.455-2.104 2.08-2.689.082-.078.168-.117.258-.117.117 0 .262.078.434.234.305.047.449.232.434.557-.047.941-.25 1.852-.609 2.73.195-.23.348-.43.457-.598.051-.082.109-.123.176-.123.059 0 .088.031.088.094 0 .039-.018.086-.053.141"/>
+   <path d="m1010.84 887.83c-.254.379-.633 1.047-1.137 2-.047.086-.076.131-.088.135-.035.019-.117.01-.246-.029-.269-.082-.404-.16-.404-.234 0-.043.018-.105.053-.188.293-.684.544-1.413.753-2.188.209-.775.309-1.37.302-1.784 0-.137-.049-.205-.146-.205-.066 0-.144.037-.234.111-.332.27-.762.793-1.289 1.57-.633.938-1.08 1.814-1.342 2.631-.027.094-.051.146-.07.158-.024.012-.08.002-.17-.029-.133-.047-.26-.113-.381-.199-.059-.043-.088-.088-.088-.135 0-.008.029-.084.088-.229.512-1.281.768-2.521.768-3.721 0-.121-.035-.182-.106-.182-.051 0-.115.033-.193.1-.418.352-.883.957-1.395 1.816-.492.82-.859 1.59-1.101 2.309-.062.184-.127.275-.193.275-.078 0-.238-.088-.481-.264-.062-.035-.094-.072-.094-.111 0-.043.043-.109.129-.199.16-.34.342-.926.545-1.758.231-.949.33-1.639.299-2.068-.059.059-.158.155-.299.29-.141.135-.246.237-.316.308-.051.051-.096.076-.135.076-.059 0-.088-.039-.088-.117 0-.063.021-.117.064-.164.219-.227.436-.494.65-.803.078-.109.146-.164.205-.164.043 0 .127.063.252.188.098.035.195.07.293.105.082.039.123.111.123.217 0 .031 0 .064-.012.1-.098.754-.248 1.457-.451 2.109.692-1.242 1.334-2.125 1.928-2.648.082-.074.162-.111.24-.111.082 0 .207.053.375.158.16.07.266.133.316.188.059.07.088.18.088.328 0 .797-.092 1.506-.275 2.127.762-1.207 1.455-2.104 2.08-2.689.082-.078.168-.117.258-.117.117 0 .262.078.434.234.305.047.449.232.434.557-.047.941-.25 1.852-.609 2.73.195-.23.348-.43.457-.598.051-.082.109-.123.176-.123.059 0 .088.031.088.094 0 .039-.018.086-.053.141"/>
+   <path d="m1015.91 885.45c-.519.965-.908 2.098-1.166 3.398.109-.191.242-.436.398-.732.02-.055.051-.082.094-.082.059 0 .088.037.088.111 0 .023-.01.049-.018.076-.25.57-.414 1.01-.492 1.318-.047.195-.109.293-.188.293-.078 0-.231-.076-.457-.229-.121-.086-.162-.238-.123-.457.164-.852.361-1.592.592-2.221-.754 1.227-1.387 2.131-1.898 2.713-.113.129-.236.193-.369.193-.109 0-.238-.045-.387-.135-.269-.047-.404-.188-.404-.422 0-.043 0-.09.012-.141.098-1.117.301-2.045.609-2.783-.066.063-.166.154-.299.275-.051.043-.09.055-.117.035-.031-.023-.025-.068.018-.135.211-.309.336-.512.375-.609.121-.305.248-.541.381-.709.07-.086.144-.129.223-.129.106 0 .26.063.463.188.055.035.082.07.082.105 0 0-.043.064-.129.193-.195.297-.402.82-.621 1.57-.238.813-.359 1.475-.363 1.986 0 .168.035.252.106.252.062 0 .164-.072.305-.217.301-.32.736-.926 1.307-1.816.504-.785.809-1.297.914-1.535.176-.398.318-.633.428-.703.07-.047.133-.07.188-.07.055 0 .16.041.316.123.156.082.234.143.234.182 0 .012-.014.027-.041.047-.027.019-.047.041-.059.064"/>
+   <path d="m1020.65 887.62c-.234.355-.539.871-.914 1.547-.07.176-.139.352-.205.527-.055.121-.127.182-.217.182-.07 0-.174-.029-.311-.088-.152-.063-.229-.125-.229-.188 0-.027.025-.088.076-.182.254-.516.48-1.158.68-1.928.215-.809.307-1.426.275-1.852-.01-.172-.047-.258-.117-.258-.051 0-.127.049-.229.146-.984.961-1.836 2.246-2.555 3.855-.09.199-.195.299-.316.299-.086 0-.229-.049-.428-.146-.078-.035-.119-.068-.123-.1 0-.016.021-.07.064-.164.227-.496.451-1.125.674-1.887.238-.824.373-1.467.404-1.928.01-.141 0-.211-.012-.211 0 0-.059.053-.164.158-.106.105-.252.242-.439.41-.035.035-.074.053-.117.053-.055 0-.082-.021-.082-.064 0-.031.02-.066.059-.105.168-.215.389-.482.662-.803.059-.066.119-.1.182-.1.094 0 .176.068.246.205.316.094.465.238.445.434-.043.43-.264 1.205-.662 2.326.262-.504.643-1.067 1.143-1.69.5-.623.871-.991 1.113-1.104.121-.055.207-.082.258-.082.051 0 .133.043.246.129.324.113.484.301.481.563 0 .273-.066.713-.199 1.318-.105.5-.203.889-.293 1.166.113-.145.258-.332.434-.563.031-.039.062-.059.094-.059.059 0 .088.037.088.111 0 .023 0 .047-.012.07"/>
+   <path d="m1023.72 883.15c.062.047.094.1.094.158 0 .113-.168.289-.504.527-.223.152-.438.207-.644.164-.117-.023-.219-.066-.305-.129-.027-.023-.048-.048-.062-.073-.014-.025-.017-.046-.01-.062.012-.016.035-.019.07-.012.359-.312.596-.537.709-.674.09-.102.154-.152.193-.152.07 0 .223.084.457.252zm-.826 2.566c-.094.527-.338 1.404-.732 2.631.113-.102.269-.287.469-.557.027-.035.055-.053.082-.053.062 0 .07.055.023.164-.02.043-.184.311-.492.803-.234.375-.406.707-.516.996-.035.09-.1.135-.193.135-.094 0-.221-.045-.381-.135-.102-.055-.152-.096-.152-.123 0-.023.021-.074.064-.152.211-.371.445-.992.703-1.863.246-.844.385-1.471.416-1.881.012-.176-.01-.264-.053-.264-.035 0-.098.043-.188.129l-.363.34c-.129.117-.193.123-.193.018 0-.031.017-.07.053-.117.184-.258.379-.502.586-.732.062-.066.123-.1.182-.1.062 0 .154.043.275.129.18.047.279.076.299.088.09.055.135.156.135.305 0 .07-.01.15-.024.24z"/>
+   <path d="m1026.83 882.22c.109.059.164.125.164.199 0 .051-.037.076-.111.076-.016 0-.04-.003-.073-.009-.033-.006-.058-.009-.073-.009-.149 0-.328.162-.539.486-.188.289-.447.918-.779 1.887-.031.086-.043.137-.035.152.012.027.062.043.152.047.23.019.539.012.926-.023.133-.012.199.045.199.17 0 .086-.051.139-.152.158-.082.012-.514.047-1.295.105-.469 1.371-.754 2.531-.855 3.48 0 .051-.01.096-.01.135 0 .133.033.199.1.199.105 0 .424-.256.955-.768.062-.063.123-.094.182-.094.051 0 .082.021.094.064.012.047-.01.102-.053.164-.316.418-.627.773-.932 1.066-.129.121-.236.182-.322.182-.086 0-.219-.068-.399-.205-.223-.059-.334-.176-.334-.352 0-.027 0-.059.012-.094.145-1.01.428-2.248.85-3.721-.207-.027-.395-.055-.563-.082-.074-.012-.111-.059-.111-.141 0-.09.039-.145.117-.164.078-.019.223-.063.434-.129.129-.043.254-.102.375-.176.418-1.293.746-2.131.984-2.514.137-.219.283-.328.439-.328.149 0 .365.078.65.234z"/>
+   <path d="m1030.63 885.65c-.543 2.504-1.053 4.377-1.529 5.619-.922 2.414-1.98 3.621-3.176 3.621-.699 0-1.451-.381-2.256-1.143-.07-.066-.106-.137-.106-.211 0-.117.055-.176.164-.176.055 0 .107.021.158.064.637.543 1.205.814 1.705.814.918 0 1.752-.766 2.502-2.297.59-1.199 1.103-2.809 1.541-4.828.027-.145.072-.365.135-.662-.41.668-.869 1.326-1.377 1.975-.488.625-.873 1.055-1.154 1.289-.156.129-.281.193-.375.193-.074 0-.15-.041-.228-.123-.082-.105-.166-.209-.252-.311-.039-.047-.059-.09-.059-.129 0-.004 0-.008 0-.012.01-.047.043-.08.105-.1.188-.254.363-.803.527-1.646.125-.664.211-1.295.258-1.893.01-.141-.01-.211-.053-.211-.012 0-.104.07-.275.211-.274.23-.422.346-.445.346-.055 0-.082-.027-.082-.082 0-.027.012-.055.035-.082.066-.082.215-.287.445-.615.207-.293.346-.439.416-.439.055 0 .129.024.223.07.199-.031.311-.047.334-.047.133 0 .199.102.199.305 0 .34-.098 1-.293 1.995-.195.99-.355 1.63-.48 1.919.391-.309.899-.914 1.524-1.816.609-.879.988-1.541 1.137-1.986.01-.262.064-.393.17-.393.082 0 .234.084.457.252.125.094.16.27.105.527"/>
+   <path d="m1003.29 898.41c-.121.906-.414 1.885-.879 2.936-.422.957-.891 1.776-1.406 2.458-.516.682-.93 1.024-1.242 1.028-.387 0-.938-.24-1.652-.721-.055-.039-.082-.084-.082-.135 0-.125.072-.188.217-.188.039 0 .078.01.117.029.293.184.617.285.973.305.488.023 1.113-.693 1.875-2.15.754-1.437 1.191-2.721 1.313-3.85.039-.363-.156-.633-.586-.809-.105-.039-.193-.055-.264-.047-.754.105-1.482.379-2.186.82-.367.875-.738 1.91-1.113 3.105-.41 1.305-.707 2.434-.891 3.387-.039.195-.121.293-.246.293-.047 0-.101-.014-.164-.041-.203-.105-.336-.191-.399-.258-.086-.09-.129-.213-.129-.369 0-.328.053-.721.158-1.178.027-.113.068-.17.123-.17.051 0 .186.09.404.27.531-1.809 1.035-3.357 1.512-4.646-.871.547-1.543 1.074-2.02 1.582-.109.121-.164.262-.164.422 0 .145.047.309.141.492.094.184.141.289.141.316 0 .066-.045.1-.135.1-.078 0-.137-.021-.176-.064-.488-.574-.732-.971-.732-1.189 0-.23.156-.486.469-.768.66-.598 1.617-1.258 2.871-1.98.207-.484.357-.727.451-.727.07 0 .215.105.434.316.215-.098.43-.195.644-.293.18-.078.326-.117.439-.117.188 0 .439.105.756.316.016-.016.041-.023.076-.023.219 0 .553.203 1 .609.242.223.363.463.363.721 0 .063-.01.135-.018.217"/>
+   <path d="m1006.19 903.03c-.949 1.215-1.617 1.822-2 1.822-.183 0-.416-.127-.697-.381-.293-.137-.439-.32-.439-.551 0-.043 0-.088.012-.135.07-.535.213-1.127.428-1.775-.145-.074-.217-.145-.217-.211 0-.055.041-.082.123-.082.062 0 .127.018.193.053.348-.781.66-1.336.938-1.664.18-.219.342-.328.486-.328.066 0 .231.057.492.17-.019-.117.014-.186.1-.205 0 0 .096 0 .275 0 .168 0 .252.029.252.088 0 .012-.01.045-.018.1-.012.055-.018.105-.018.152 0 .141 0 .314.01.521 0 .207.01.346.01.416 0 .484-.133.822-.398 1.014-.242.176-.516.264-.82.264-.16 0-.426-.043-.797-.129-.066.121-.141.357-.223.709-.109.445-.16.84-.152 1.184 0 .203.068.305.193.305.047 0 .107-.012.182-.035.453-.16 1.084-.648 1.893-1.465.051-.051.101-.076.152-.076.074 0 .111.035.111.105 0 .043-.019.088-.058.135zm-.686-2.59c0-.152-.033-.229-.1-.229-.043 0-.106.031-.188.094-.383.309-.719.85-1.01 1.623.078.012.215.023.41.035.316.012.553-.061.709-.217.117-.117.182-.311.193-.58-.012.199-.018-.043-.018-.727"/>
+   <path d="m1009.43 900.01c0 .176-.047.457-.141.844-.035.133-.074.219-.117.258-.02.019-.086.049-.199.088-.145.055-.234.082-.27.082-.059 0-.088-.039-.088-.117 0-.043.01-.1.024-.17.094-.387.13-.655.108-.806-.021-.15.022-.245.132-.284.191-.098.314-.146.369-.146.121 0 .182.084.182.252m-.938 3.363c.012.469-.248.789-.779.961-.066.164-.129.277-.188.34-.09.094-.223.148-.398.164-.113.008-.234.002-.363-.018-.231-.035-.514-.078-.85-.129-.094-.016-.15-.072-.17-.17.016-.105.125-.168.328-.188.277-.019.688-.068 1.23-.146.203-.047.348-.162.434-.346.051-.094.076-.209.076-.346 0-.246-.123-.68-.369-1.301-.242-.605-.356-1.01-.34-1.213.031-.488.482-.828 1.354-1.02.086-.019.129.012.129.094 0 .047-.031.084-.094.111-.422.184-.633.41-.633.68 0 .105.019.237.059.396.039.158.156.538.351 1.14.145.434.219.764.223.99"/>
+   <path d="m1012.06 898.15c.062.047.094.1.094.158 0 .113-.168.289-.504.527-.223.152-.438.207-.644.164-.117-.023-.219-.066-.305-.129-.027-.023-.048-.048-.062-.073-.014-.025-.017-.046-.01-.062.012-.016.035-.019.07-.012.359-.312.596-.537.709-.674.09-.102.154-.152.193-.152.07 0 .223.084.457.252zm-.826 2.566c-.094.527-.338 1.404-.732 2.631.113-.102.269-.287.469-.557.027-.035.055-.053.082-.053.062 0 .07.055.024.164-.02.043-.184.311-.492.803-.234.375-.406.707-.516.996-.035.09-.1.135-.193.135-.094 0-.221-.045-.381-.135-.101-.055-.152-.096-.152-.123 0-.023.021-.074.064-.152.211-.371.445-.992.703-1.863.246-.844.385-1.471.416-1.881.012-.176-.01-.264-.053-.264-.035 0-.098.043-.188.129l-.363.34c-.129.117-.193.123-.193.018 0-.031.018-.07.053-.117.184-.258.379-.502.586-.732.062-.066.123-.1.182-.1.062 0 .154.043.275.129.18.047.279.076.299.088.09.055.135.156.135.305 0 .07-.01.15-.023.24"/>
+   <path d="m1015.97 900.56c-1.199 6.223-2.758 9.332-4.676 9.328-.691 0-1.439-.381-2.244-1.143-.074-.07-.111-.143-.111-.217 0-.113.053-.17.158-.17.055 0 .107.021.158.064.637.543 1.207.814 1.711.814 1.609 0 2.951-2.363 4.03-7.09-.652 1.121-1.221 1.924-1.705 2.408-.195.199-.369.299-.521.299-.141 0-.314-.078-.521-.234-.371-.184-.549-.484-.533-.902.024-.512.221-1.146.592-1.904.363-.738.742-1.295 1.137-1.67.223-.211.424-.316.604-.316.133 0 .279.059.439.176.024.019.18.158.469.416.059.051.088.102.088.152 0 .07-.047.105-.141.105-.059 0-.125-.018-.199-.053-.117-.063-.232-.094-.346-.094-.164 0-.313.059-.445.176-.285.25-.584.656-.896 1.219-.34.617-.549 1.18-.627 1.688-.02.137-.029.256-.029.357 0 .289.078.434.234.434.106 0 .217-.053.334-.158.465-.398.926-.975 1.383-1.729.426-.695.729-1.334.908-1.916.067-.207.1-.404.1-.592 0-.148.035-.223.105-.223.074 0 .219.082.434.246.129.098.168.273.117.527"/>
+   <path d="m1020.97 902.62c-.234.355-.539.871-.914 1.547-.07.176-.139.352-.205.527-.055.121-.127.182-.217.182-.07 0-.174-.029-.311-.088-.152-.063-.229-.125-.229-.188 0-.027.025-.088.076-.182.254-.516.48-1.158.68-1.928.215-.809.307-1.426.275-1.852-.01-.172-.047-.258-.117-.258-.051 0-.127.049-.229.146-.984.961-1.836 2.246-2.555 3.855-.09.199-.195.299-.317.299-.086 0-.229-.049-.428-.146-.078-.035-.119-.068-.123-.1 0-.016.022-.07.064-.164.227-.496.451-1.125.674-1.887.238-.824.373-1.467.404-1.928.01-.141 0-.211-.012-.211 0 0-.059.053-.164.158-.106.105-.252.242-.439.41-.035.035-.074.053-.117.053-.055 0-.082-.021-.082-.064 0-.031.019-.066.059-.105.168-.215.389-.482.662-.803.059-.066.119-.1.182-.1.094 0 .176.068.246.205.316.094.465.238.445.434-.043.43-.264 1.205-.662 2.326.262-.504.643-1.067 1.143-1.69.5-.623.871-.991 1.113-1.104.121-.055.207-.082.258-.082.051 0 .133.043.246.129.324.113.484.301.481.563 0 .273-.066.713-.199 1.318-.105.5-.203.889-.293 1.166.113-.145.258-.332.434-.563.031-.039.062-.059.094-.059.059 0 .088.037.088.111 0 .023 0 .047-.012.07"/>
+  </g>
+  <path opacity=".01" fill="#232629" fill-opacity=".604" d="m938 844.36h18v64h-18z"/>
+  <path d="m1047.3 795.14l-37.89 65.58-2.598-1.501 37.89-65.58z" opacity=".3" fill="#717171"/>
+  <g transform="matrix(-.5.86603-.86603-.5 2251.45 411.25)" style="fill:currentColor" class="ColorScheme-ViewText">
+   <path d="m1004.18 904.03l2.98 5.209 2.894-5.322h-.062l.034-43.13-5.812.082-.035 43.13z"/>
+   <circle transform="matrix(-.60001-.79999.79999-.60001 0 0)" cx="-1288.8" cy="292.23" r="6.499"/>
+  </g>
+  <path opacity=".01" fill="#232629" fill-opacity=".604" d="m969 847.36h12v85h-12z"/>
+  <g fill="#717171">
+   <path d="m1045.93 790.13l-37.89 65.58-2.598-1.501 37.89-65.58z"/>
+   <circle r="3.671" cy="-1300.66" cx="232.3" transform="matrix(-.5033.86411-.86411-.5033 0 0)"/>
+  </g>
+  <g fill="#232629" fill-opacity=".004">
+   <circle r="6.499" cy="256.78" cx="-1259.36" transform="matrix(-.60001-.79999.79999-.60001 0 0)"/>
+   <circle r="4.062" cy="-1280.66" cx="241.58" transform="matrix(-.5033.86411-.86411-.5033 0 0)"/>
+  </g>
+ </g>
+</svg>
diff -pruN 4:5.94.0-1/icons-dark/index.theme 4:5.96.0-1/icons-dark/index.theme
--- 4:5.94.0-1/icons-dark/index.theme	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/icons-dark/index.theme	2022-07-02 14:28:29.000000000 +0000
@@ -24,6 +24,7 @@ Name[ia]=Breeze Dark
 Name[id]=Breeze Gelap
 Name[it]=Brezza scuro
 Name[ja]=Breeze ダーク
+Name[ka]=Breeze Dark
 Name[ko]=어두운 Breeze
 Name[lt]=Breeze tamsus
 Name[nl]=Breeze Dark
@@ -40,6 +41,7 @@ Name[sr@ijekavian]=Поветарац т
 Name[sr@ijekavianlatin]=Povetarac tamni
 Name[sr@latin]=Povetarac tamni
 Name[sv]=Breeze mörk
+Name[ta]=பிரீஸ் கருமை
 Name[tg]=Насими торик
 Name[tr]=Esinti Koyu
 Name[uk]=Темна Breeze
@@ -72,6 +74,7 @@ Comment[ia]=Breeze Dark (Brisa Obscure)
 Comment[id]=Breeze Gelap oleh KDE VDG
 Comment[it]=Brezza scuro del KDE VDG
 Comment[ja]=KDE VDG による Breeze ダーク
+Comment[ka]=Breeze Dark "KDE VDG"-სგან
 Comment[ko]=KDE 시각 디자인 그룹에서 제작한 어두운 Breeze
 Comment[lt]=Breeze tamsus pagal KDE VDG
 Comment[nl]=Breeze Dark door de KDE VDG
diff -pruN 4:5.94.0-1/.kde-ci.yml 4:5.96.0-1/.kde-ci.yml
--- 4:5.94.0-1/.kde-ci.yml	2022-04-11 19:49:44.000000000 +0000
+++ 4:5.96.0-1/.kde-ci.yml	2022-07-02 14:28:29.000000000 +0000
@@ -5,3 +5,4 @@ Dependencies:
 
 Options:
   test-before-installing: True
+  require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ]
