Files
nixos-config/glasshouse-laptop/home/scripts/toggle_float.nix

12 lines
214 B
Nix

{ self, pkgs }:
{
toggle_float = pkgs.writeShellScriptBin "toggle_float" (''
#!/usr/bin/env bash
hyprctl dispatch togglefloating
hyprctl dispatch resizeactive exact 950 600
hyprctl dispatch centerwindow
'');
}