Changes
1 changed files (+39/-0)
-
-
@@ -22,6 +22,45 @@ Third-party [Roon](https://roon.app/) client application using GTK4 and GNOME wi ## Installation ### Flatpak 1. Go to [Releases page](https://codeberg.org/pocka/plac-for-gtk4/releases) 2. Download `jp.pocka.plac.gtk-adwaita.x86_64.flatpak` 3. Install with `flatpak install --user <path to downloaded file>` ### Nix Add this repository to Flake inputs then use `packages.${system}.default` in package list. ### Home Manager Add this repository to Flake inputs then import `homeManagerModules.default`. ```nix { inputs = { # ... plac = { url = "git+https://codeberg.org/pocka/plac-for-gtk4.git"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { home-manager, plac, ... }: { homeConfigurations = { foo = home-manager.lib.homeManagerConfiguration { modules = [ plac.homeManagerModules.default ]; }; }; }; } ``` The module is enabled by default. See [`flake.nix`](./flake.nix) for available options. ## Runtime Dependencies - gtk4
-