mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:49:42 +00:00
ItsDrike
b51d136c0c
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.
11 lines
179 B
Nix
11 lines
179 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = {
|
|
hyprland-move-window = pkgs.callPackage ./hyprland-move-window {};
|
|
brightness = pkgs.callPackage ./brightness {};
|
|
};
|
|
in
|
|
packages
|