Community scripts and utilities for Hypr projects
Find a file
Ioannis Koutras 8e6c02ac3d
Some checks are pending
Check scripts / Check scripts (push) Waiting to run
hdrop: 0.7.6 -> 0.7.7
2025-05-12 13:24:12 +03:00
.github pull_request_template: fix alignment 2025-01-29 20:48:20 +02:00
grimblast grimblast: use '--batch' for 'hyprctl' to limit the number of control calls (#145) 2025-03-17 14:12:03 +02:00
hdrop hdrop: 0.7.6 -> 0.7.7 2025-05-12 13:24:12 +03:00
hyprprop hyprprop: add meta.mainProgram 2023-10-30 19:39:39 +02:00
scratchpad scratchpad: add gawk to closure 2024-04-22 13:09:56 +03:00
shellevents shellevents: support minimized event (#147) 2025-03-31 13:34:18 +03:00
try_swap_workspace README: split for each tool 2023-12-09 13:37:36 +02:00
CHANGELOG.md hdrop: 0.7.6 -> 0.7.7 2025-05-12 13:24:12 +03:00
flake.lock grimblast: include hyprpicker in closure (#98) 2024-04-07 18:55:18 +03:00
flake.nix Nix: add aarch64-linux support (#75) 2023-11-26 03:50:02 +02:00
LICENSE Create LICENSE 2022-07-20 18:05:37 +03:00
README.md Readme: change description of hdrop 2023-12-29 02:31:13 +02:00

Hypr Development Contrib

Community scripts and utilities for Hypr projects

Tools

Name Description Maintainer(s)
grimblast A Hyprland version of Grimshot @fufexan, @Misterio77
shellevents Invoke shell functions in response to Hyprland socket2 events @trippwill
try_swap_workspace Binding to mimic the 'arbitrary workspace on arbitrary monitor' behavior @schievel1
scratchpad A Bash script that instantly sends focused window to a special workspace named scratchpad and makes it easier to retrieve the window back to the current workspace @niksingh710
hdrop Run, show and hide programs via keybind. Emulates tdrop in Hyprland @Schweber

Installing

Manual

Clone the repo, cd to your desired tool, run make to build. To install, run make install. You may need root privileges.

Nix

In your configuration flake, add

{
  inputs.hyprland-contrib = {
    url = "github:hyprwm/contrib";
    inputs.nixpkgs.follows = "nixpkgs";
  };

  # ...
}

To make inputs available in your configurations, add this

# for Home Manager
homeConfigurations.YOURCONFIG = inputs.home-manager.lib.homeManagerConfiguration {
  pkgs = ...;
  modules = ...;

  extraSpecialArgs = {inherit inputs;};
}

# for NixOS
nixosConfigurations.YOURHOSTNAME = inputs.nixpkgs.nixosSystem {
  system = "...";
  modules = ...;

  specialArgs = {inherit inputs;};
}

For the final step, add packages to your environment.systemPackages or home.packages in this format:

{pkgs, inputs, ...}: {
  environment.systemPackages = [ # or home.packages
    inputs.hyprland-contrib.packages.${pkgs.system}.grimblast # or any other package
  ];
}

Contributing

Contributions are welcome! Please open a PR with your utility and describe how it helps the Hypr ecosystem. Also provide a screen recording if possible, demonstrating its usage. While developing bash scripts, it is recommended to use shellcheck for idiomatic ways to write them. If your utility is written in bash, please add it to the checks matrix.