Added KDE Desktop theme

This commit is contained in:
2026-05-22 23:10:19 +12:00
parent f0d2926872
commit 9e08506146
256 changed files with 953 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -e
echo "Refreshing KDE package cache..."
if command -v kbuildsycoca6 >/dev/null 2>&1; then
kbuildsycoca6
else
echo "kbuildsycoca6 not found; skipping cache refresh."
fi
echo "Restarting Plasma Shell..."
systemctl --user restart plasma-plasmashell.service || {
echo "systemd restart failed; falling back to kquitapp6/plasmashell."
kquitapp6 plasmashell || true
nohup plasmashell >/tmp/nebula-plasmashell.log 2>&1 &
}
echo "Plasma Shell reload requested."