PlasmaZones v2.4.1
Fixed
- Edge threshold resets to 100px ([#237]): The UI allowed up to 500px but the C++ setter/loader still clamped to 100. Values above 100 were silently clamped back on save. Also fixed the
.kcfgschema max to match. - Per-screen autotile split ratio using wrong default: Per-screen overrides fell back to the algorithm default (0.6) instead of the config default (0.5) when no override was stored.
- Shortcuts KCM shows "plasmazonesd" with no icon: Added KGlobalAccel component desktop file and restored
setApplicationDisplayName/setWindowIconlost during KAboutData removal. - Retile shortcut conflicts with Spectacle: Changed default from Meta+Shift+R (Spectacle rectangular region capture) to Meta+Ctrl+R.
Changed
- ConfigDefaults is now the single source of truth for all setting defaults, min/max bounds, and shortcut defaults. Previously duplicated across
configdefaults.h,settings.h,setters.cpp,loadsave.cpp,perscreen.cpp, QML pages,.kcfg, and tests — now every consumer referencesConfigDefaults. Changing a bound or default requires editing exactly one place. - Settings bounds exposed to QML via
SettingsControllerconstant Q_PROPERTYs. All QMLfrom:/to:values reference the controller instead of hardcoded literals. - Removed dead code: Unused
ZoneSelectorCard.qml. - Added
FilterLayoutsByAspectRatioto.kcfg: Was implemented in code but missing from the schema. - Editor defaults consolidated: Previously hardcoded in
loadsave.cpp, now inConfigDefaults.
Installation
Arch Linux (AUR):
yay -S plasmazones # or plasmazones-binArch Linux (manual):
sudo pacman -U plasmazones-2.4.1-1-x86_64.pkg.tar.zstKDE Neon / Debian-based:
sudo dpkg -i plasmazones_2.4.1-1_amd64.deb
sudo apt-get install -f # Install dependencies if neededFedora (COPR):
sudo dnf copr enable fuddlesworth/PlasmaZones
sudo dnf install plasmazonesFedora (manual RPM):
sudo dnf install plasmazones-2.4.1-1.fc43.x86_64.rpmopenSUSE Tumbleweed (manual RPM):
sudo zypper install plasmazones-2.4.1-1.x86_64.rpmopenSUSE Tumbleweed (OBS):
sudo zypper addrepo https://download.opensuse.org/repositories/home:ilFrance/openSUSE_Tumbleweed/home:ilFrance.repo
sudo zypper refresh
sudo zypper install plasmazonesCommunity-maintained package by ilFrance
Universal Linux (AppDir):
For Fedora Atomic, Steam Deck, or non-root user installation:
tar xzf plasmazones-2.4.1-linux-x86_64.tar.gz
cd plasmazones-linux-x86_64
./install.shNixOS (flake):
# flake.nix inputs
plasmazones.url = "github:fuddlesworth/PlasmaZones";
# configuration.nix
programs.plasmazones.enable = true;NixOS (standalone):
Download plasmazones.nix from the release assets, then:
# configuration.nix
environment.systemPackages = [
(pkgs.callPackage ./plasmazones.nix {})
];Post-Installation
systemctl --user enable --now plasmazones.service
systemsettings kcm_plasmazones