Find a file
2025-07-18 23:47:19 +02:00
.github/workflows CI/Nix: add cache-nix-action 2025-06-20 01:28:32 +03:00
borders-plus-plus fix(all): chase hyprland renderer changes 2025-07-10 20:18:38 +03:00
csgo-vulkan-fix csgo-vulkan-fix: chase hyprland (#335) 2025-05-07 20:55:53 +02:00
hyprbars fix(all): chase hyprland renderer changes 2025-07-10 20:18:38 +03:00
hyprexpo fix(all): chase hyprland renderer changes 2025-07-10 20:18:38 +03:00
hyprfocus readme: fixed a typo (#400) 2025-06-21 12:59:38 +02:00
hyprscrolling scrolling: make movewindowto l promote on the left edge 2025-07-11 19:24:48 +02:00
hyprtrails fix(all): chase hyprland renderer changes 2025-07-10 20:18:38 +03:00
hyprwinwrap hyprwinwrap: add position and coordinates options (#427) 2025-07-18 23:47:19 +02:00
xtra-dispatchers xtra-dispatchers: fix closeunfocused 2025-06-23 14:35:53 +02:00
.clang-format Add clang-format 2023-02-28 12:22:29 +00:00
.gitignore flake: overlay: move packages to hyprlandPlugins namespace (#180) 2024-06-11 16:05:05 +03:00
flake.lock chore: update flake.lock 2025-07-10 20:18:38 +03:00
flake.nix hyprfocus: fix nix 2025-06-20 11:41:32 +03:00
hyprload.toml hyprload: add hyprwinwrap manifest 2023-11-25 01:48:36 +00:00
hyprpm.toml hyprfocus: init new plugin 2025-06-19 17:31:30 +02:00
LICENSE Initial commit 2023-02-27 14:01:11 +00:00
README.md hyprfocus: init new plugin 2025-06-19 17:31:30 +02:00

hyprland-plugins

This repo houses official plugins for Hyprland.

Plugin list

  • borders-plus-plus -> adds one or two additional borders to windows
  • csgo-vulkan-fix -> fixes custom resolutions on CS:GO with -vulkan
  • hyprbars -> adds title bars to windows
  • hyprexpo -> adds an expo-like workspace overview
  • hyprfocus -> flashfocus for hyprland
  • hyprscrolling -> adds a scrolling layout to hyprland
  • hyprtrails -> adds smooth trails behind moving windows
  • hyprwinwrap -> clone of xwinwrap, allows you to put any app as a wallpaper
  • xtra-dispatchers -> adds some new dispatchers

Install

Important

hyprland-plugins only officially supports installation via hyprpm. hyprland-plugins follows hyprland-git and requires you to be on hyprland-git or tagged >= v0.33.1.

Install with hyprpm

To install these plugins, from the command line run:

hyprpm update

Then add this repository:

hyprpm add https://github.com/hyprwm/hyprland-plugins

then enable the desired plugin with

hyprpm enable <plugin-name>

See the respective README's in the subdirectories for configuration options.

See the plugins wiki and hyprpm -h for more details.

Install on Nix

To use these plugins, it's recommended that you are already using the Hyprland flake. First, add this flake to your inputs:

inputs = {
  # ...
  hyprland.url = "github:hyprwm/Hyprland";
  hyprland-plugins = {
    url = "github:hyprwm/hyprland-plugins";
    inputs.hyprland.follows = "hyprland";
  };

  # ...
};

The inputs.hyprland.follows guarantees the plugins will always be built using your locked Hyprland version, thus you will never get version mismatches that lead to errors.

After that's done, you can use the plugins with the Home Manager module like this:

{inputs, pkgs, ...}: {
  wayland.windowManager.hyprland = {
    enable = true;
    # ...
    plugins = [
      inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars
      # ...
    ];
  };
}

If you don't use Home Manager:

{ lib, pkgs, inputs, ... }:
with lib; let
  hyprPluginPkgs = inputs.hyprland-plugins.packages.${pkgs.system};
  hypr-plugin-dir = pkgs.symlinkJoin {
    name = "hyrpland-plugins";
    paths = with hyprPluginPkgs; [
      hyprexpo
      #...plugins
    ];
  };
in
{
  environment.sessionVariables = { HYPR_PLUGIN_DIR = hypr-plugin-dir; };
}

And in hyprland.conf

# load all the plugins you installed
exec-once = hyprctl plugin load "$HYPR_PLUGIN_DIR/lib/libhyprexpo.so"

Contributing

Feel free to open issues and MRs with fixes.

If you want your plugin added here, contact vaxry beforehand.