Community scripts and utilities for Hypr projects
  • Shell 84.3%
  • Nix 11.3%
  • Makefile 4.4%
Find a file
2026-06-30 12:24:27 +03:00
.github CI: use org-wide actions 2026-04-17 14:41:01 +03:00
cycle-layout cycle-layout: fix hyprland 0.55.0 compatibility 2026-05-11 11:34:48 +03:00
grimblast grimblast: fix duplicate slurp 2026-06-30 12:24:27 +03:00
hdrop hdrop: Sync with upstream (#189) 2026-02-16 20:24:02 +02:00
hyprosd-mako Add hyprosd-mako: Mako OSD scripts for volume/brightness/mic (#184) 2025-12-07 15:19:40 +02: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 try_swap_workspace: fix monitor ID after standby (#167) 2025-08-20 12:03:30 +03:00
CHANGELOG.md grimblast: use foreign toplevel for window selection 2026-06-29 18:21:28 +03:00
flake.lock grimblast: include hyprpicker in closure (#98) 2024-04-07 18:55:18 +03:00
flake.nix cycle-layout: init 2026-03-29 00:18:42 +02:00
LICENSE Create LICENSE 2022-07-20 18:05:37 +03:00
README.md cycle-layout: init 2026-03-29 00:18:42 +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
hyprosd-mako Lightweight Mako-based OSD scripts for volume, brightness, and microphone state @KevynValladares21
cycle-layout Tiny script to cycle layouts for current workspace. @cebem1nt

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.