This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
0.3.2
Changelogs
- ROUNDED CORNER RULES ARE HERE WOOP WOOP
Issues
dwm
does not render workspace switch animations.
Currently qtile
and bspwm
are for unknown reasons experiencing graphical glitches.
If you are using either of these WM's and are not experiencing graphical glitches please join issue #3 and submit your bspwm or qtile configuration/system specs/and or other useful information.
You can get this release using any of these methods:
Building Manually
$ meson setup --buildtype=release . build
$ ninja -C build
$ ninja -C build install
Arch Linux or other Arch derivatives
paru -S picom-allusive
or
yay -S picom-allusive
For NixOS Unstable
environment.systemPackages = [ pkgs.picom-allusive ];
or for home-manager
home.packages = [ pkgs.picom-allusive ];
NixOS Stable (in either of the positions shown above)
(picom.overrideAttrs (oldAttrs: rec {
pname = "picom-allusive";
version = "0.3.2";
src = pkgs.fetchFromGitHub {
owner = "allusive-dev";
repo = "picom-allusive";
rev = version;
hash = "sha256-1zWntz2QKp/O9ZuOUZy9NkCNXFsBqRRvcd0SAr+7G/o=";
};
postInstall =
''
chmod +x $out/bin/picom-trans
''
+ oldAttrs.postInstall;
}))
Full Changelog: 0.3.1...0.3.2