Files
shed/glasshouse-laptop/home/scripts/toggle_float.nix
2024-10-12 17:17:10 -04:00

12 lines
208 B
Nix

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