From 42aea4421377f2022221a2c56b92c4ba8d5a121c Mon Sep 17 00:00:00 2001 From: Sujal Singh Date: Fri, 21 Nov 2025 13:38:50 +0530 Subject: [PATCH 1/2] add a plasma variant --- install.sh | 10 ++++++++++ plasma/places/16/start-here.svg | 13 +++++++++++++ plasma/places/22/start-here.svg | 14 ++++++++++++++ plasma/places/24/start-here.svg | 12 ++++++++++++ plasma/places/scalable/start-here-symbolic.svg | 1 + plasma/places/scalable/start-here.svg | 1 + 6 files changed, 51 insertions(+) create mode 100644 plasma/places/16/start-here.svg create mode 100644 plasma/places/22/start-here.svg create mode 100644 plasma/places/24/start-here.svg create mode 120000 plasma/places/scalable/start-here-symbolic.svg create mode 120000 plasma/places/scalable/start-here.svg 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 From d8306cc7d196969d7dbc392a3f6866b4e8be846e Mon Sep 17 00:00:00 2001 From: Sujal Singh Date: Sat, 22 Nov 2025 11:47:09 +0530 Subject: [PATCH 2/2] update readme to include flag for kde plasma --- README.md | 1 + 1 file changed, 1 insertion(+) 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|