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