Files
nixos-config/glasshouse-laptop/home/scripts/switchmon.nix
2024-10-12 17:17:10 -04:00

10 lines
200 B
Nix

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