Misterio77 / hyprland-plugins

Official plugins for Hyprland

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hyprland-plugins

This repo houses official plugins for Hyprland.

Important

hyprland-plugins follows hyprland-git and requires hyprland-git to work properly. If you want to use a versioned hyprland, you'll have to reset hyprland-plugins to a commit from before that hyprland version's release date.

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
  • hyprtrails -> adds smooth trails behind moving windows
  • hyprwinwrap -> clone of xwinwrap, allows you to put any app as a wallpaper

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
      # ...
    ];
  };
}

Contributing

Feel free to open issues and MRs with fixes.

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

About

Official plugins for Hyprland

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 88.4%Language:Meson 5.5%Language:Nix 4.6%Language:Makefile 1.5%