12 lines
202 B
Nix
12 lines
202 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
}:
|
|
pkgs.writeShellScriptBin "toggle_float" ''
|
|
#!/usr/bin/env bash
|
|
|
|
hyprctl dispatch togglefloating
|
|
hyprctl dispatch resizeactive exact 950 600
|
|
hyprctl dispatch centerwindow
|
|
''
|