github fuddlesworth/PlasmaZones v2.8.7
PlasmaZones v2.8.7

22 days ago

PlasmaZones v2.8.7

Added

  • BUILD_KWIN_EFFECT CMake option (#321): The kwin-effect subdirectory hard-requires find_package(KWin 6.6 REQUIRED), which aborted the entire configure step on distros shipping older KWin (Debian 13 / KWin 6.3.6, Ubuntu 24.04, Fedora 40) even though the daemon, editor, KCM, settings app, and QPA plugin build cleanly there. The new BUILD_KWIN_EFFECT option (default ON) lets packagers pass -DBUILD_KWIN_EFFECT=OFF to build everything except the C++ effect plugin. Thanks @iubayb.

Fixed

  • Qt 6.9 QWaylandWindow::updateExposure() compile error on Qt 6.8 (#321): layershellwindow.cpp called a private method added in Qt 6.9, breaking the build on Qt 6.8.x. Guarded the call with QT_VERSION_CHECK(6, 9, 0) and fell back to the underlying public QPA mechanism (QWindowSystemInterface::handleExposeEvent) on older Qt — same visible effect, same expose-event delivery. Thanks @iubayb.

Installation

Arch Linux (AUR):

yay -S plasmazones  # or plasmazones-bin

Arch Linux (manual):

sudo pacman -U plasmazones-2.8.7-1-x86_64.pkg.tar.zst

KDE Neon / Debian-based:

sudo dpkg -i plasmazones_2.8.7-1_amd64.deb
sudo apt-get install -f  # Install dependencies if needed

Fedora (COPR):

sudo dnf copr enable fuddlesworth/PlasmaZones
sudo dnf install plasmazones

Fedora (manual RPM):

sudo dnf install plasmazones-2.8.7-1.fc43.x86_64.rpm

openSUSE Tumbleweed (manual RPM):

sudo zypper install plasmazones-2.8.7-1.x86_64.rpm

openSUSE Tumbleweed (OBS):

sudo zypper addrepo https://download.opensuse.org/repositories/home:ilFrance/openSUSE_Tumbleweed/home:ilFrance.repo
sudo zypper refresh
sudo zypper install plasmazones

Community-maintained package by ilFrance

Universal Linux (AppDir):
For Fedora Atomic, Steam Deck, or non-root user installation:

tar xzf plasmazones-2.8.7-linux-x86_64.tar.gz
cd plasmazones-linux-x86_64
./install.sh

NixOS (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

Don't miss a new PlasmaZones release

NewReleases is sending notifications on new releases.