A simple, fast and scriptable keybind inspection utility for Hyprland
- Download Go. You can obtain it from your distro's package manager. It is named "go" under most distros.
- Clone this repository with
git clone https://github.com/hyprland-community/hyprkeys
- Install the application with
make build
thensudo make install
- You can run the application with
hyprkeys
# flake.nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
hyprkeys = {
url = "github:hyprland-community/hyprkeys";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, hyprkeys }: let
in {
nixosConfigurations.yourHostName = nixpkgs.lib.nixosSystem {
# ...
system.packages = [ hyprkeys.packages.${system}.hyprkeys ];
# ...
};
};
}
Prebuilt binaries are distributed for each tagged release. You may find them under releases
See hyprkeys -v
for a full list of commands and flags.
example.1.mp4
See TODO.
This project is licensed under the GPLv3 License. See the LICENSE file for more details.
Contributions, in form of Pull Requests and Issues are always welcome. If you wish to make changes, open a pull request and I will guide you through it.