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