nixdots/home/programs/graphical/wms/hyprland/packages/default.nix
ItsDrike b51d136c0c
Move to focusworkspaceoncurrentmonitor (from custom script)
For a long time now, I've been using a custom shell script to handle
focusing to a workspace, which handled (xmonad-like) monitor swapping.

However recently, the option `focusworkspaceoncurrentmonitor` has been
added to Hyprland, which does the exact same. That means the script is
no longer necessary and we can move to the new built-in option.
2024-06-20 23:30:56 +02:00

11 lines
179 B
Nix

{
pkgs,
...
}: let
packages = {
hyprland-move-window = pkgs.callPackage ./hyprland-move-window {};
brightness = pkgs.callPackage ./brightness {};
};
in
packages