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