Files
nixos-config/overlay/scripts/wm-controls/switchmon.nix

10 lines
206 B
Nix
Executable File

{ pkgs }:
pkgs.writeShellApplication {
name = "switchmon";
text = ''
#!/bin/zsh
hyprctl dispatch focusmonitor "$(hyprctl -j monitors | jq -r '.[] | select(.focused == false) | .name')"
'';
}