Activate Linux watermark for Wayland
  • C 71.3%
  • Nix 22.2%
  • Makefile 6.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2023-01-29 23:03:09 +01:00
src added arguments support 2022-05-23 09:34:29 +00:00
.gitignore initial commit 2022-04-27 14:13:32 +02:00
flake.lock Add NIX flake package 2022-05-18 12:28:44 +00:00
flake.nix Add NIX flake package 2022-05-18 12:28:44 +00:00
LICENSE.md initial commit 2022-04-27 14:13:32 +02:00
Makefile fix recompiling 2022-05-16 13:16:10 +02:00
README.md Update 'README.md' 2023-01-29 23:02:25 +01:00

activate-linux for Wayland

The "Activate Windows" watermark ported to Linux with Gtk Layer Shell kkkkk

Linux

Dependencies

This project depends on:

Building

make

Installing

Arch Linux

test 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
            ........
          ];
        })
      ];
    };
  };
}