2e8716dc7ba9a39bd0aaff56918bfe8e7c1ad892
activate-linux for Wayland
The "Activate Windows" watermark ported to Linux with Gtk Layer Shell
Linux
Dependencies
This project depends on:
gtk-3.0(on some distros alsolibgtk-3-dev)gtk-layer-shelland any supported wayland compositor
Building
make
Installing
Arch Linux
This project is in the AUR under activate-linux-wayland-git
Install it using your favorite AUR helper.
NixOS
NixOS installation with Flakes
Just import flake and use defaultPackage.
{
........
inputs.activate-linux = {
url = "github:Kljunas2/activate-linux";
inputs.nixpkgs.follows = "nixpkgs"; # not mandatory but recommended
};
........
outputs = { self, nixpkgs, activate-linux }: {
........
modules = [
({ self, ... }: {
environment.systemPackages = with pkgs; [
........
activate-linux.defaultPackage.xf86_64-linux
........
];
})
];
};
};
}
Description
Languages
C
71.3%
Nix
22.2%
Makefile
6.5%