diff --git a/README.md b/README.md
index d44bd8a0..0d6f1424 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@ Usage: `./install.sh` **[OPTIONS...]**
|-t, --theme | Specify theme color variant(s) [default/purple/pink/red/orange/yellow/green/grey/all] (Default: blue)|
|-a, --alternative | Install alternative icons (redesigned MacOS default icons)|
|-b, --bold | Install bold panel icons version|
+| -p, --kde-plasma | Replace Apple logo with KDE Plasma logo|
|-r,--remove,-u,--uninstall | Uninstall (remove) icon themes|
|-h, --help | Show this help|
diff --git a/install.sh b/install.sh
index 404d0779..de168e68 100755
--- a/install.sh
+++ b/install.sh
@@ -31,6 +31,7 @@ cat << EOF
-t, --theme VARIANT Specify theme color variant(s) [default|purple|pink|red|orange|yellow|green|grey|nord|all] (Default: blue)
-a, --alternative Install alternative icons for software center and file-manager
-b, --bold Install bolder panel icons version (1.5px size)
+ -p, --kde-plasma Replaces Apple logo with KDE Plasma logo.
-r, --remove,
-u, --uninstall Uninstall (remove) icon themes
@@ -79,6 +80,10 @@ install() {
cp -r "${SRC_DIR}"/alternative/* "${THEME_DIR}"
fi
+ if [[ ${plasma:-} == 'true' ]]; then
+ cp -r "${SRC_DIR}"/plasma/* "${THEME_DIR}"
+ fi
+
if [[ ${theme} != '' ]]; then
cp -r "${SRC_DIR}"/colors/color${theme}/*.svg "${THEME_DIR}"/places/scalable
fi
@@ -235,6 +240,11 @@ while [[ "$#" -gt 0 ]]; do
echo "Installing 'bold' version..."
shift
;;
+ -p|--kde-plasma)
+ plasma='true'
+ echo "Replacing Apple logo with KDE Plasma logo..."
+ shift
+ ;;
-r|--remove|-u|--uninstall)
remove='true'
shift
diff --git a/plasma/places/16/start-here.svg b/plasma/places/16/start-here.svg
new file mode 100644
index 00000000..888b287e
--- /dev/null
+++ b/plasma/places/16/start-here.svg
@@ -0,0 +1,13 @@
+
diff --git a/plasma/places/22/start-here.svg b/plasma/places/22/start-here.svg
new file mode 100644
index 00000000..e902101e
--- /dev/null
+++ b/plasma/places/22/start-here.svg
@@ -0,0 +1,14 @@
+
diff --git a/plasma/places/24/start-here.svg b/plasma/places/24/start-here.svg
new file mode 100644
index 00000000..30ddaff9
--- /dev/null
+++ b/plasma/places/24/start-here.svg
@@ -0,0 +1,12 @@
+
diff --git a/plasma/places/scalable/start-here-symbolic.svg b/plasma/places/scalable/start-here-symbolic.svg
new file mode 120000
index 00000000..5e9998e6
--- /dev/null
+++ b/plasma/places/scalable/start-here-symbolic.svg
@@ -0,0 +1 @@
+../16/start-here.svg
\ No newline at end of file
diff --git a/plasma/places/scalable/start-here.svg b/plasma/places/scalable/start-here.svg
new file mode 120000
index 00000000..5e9998e6
--- /dev/null
+++ b/plasma/places/scalable/start-here.svg
@@ -0,0 +1 @@
+../16/start-here.svg
\ No newline at end of file