#!/bin/bash
set -e

# single_window_aspect_ratio lives under the dwindle namespace (the default
# layout), not a bare `layout:` — `hyprctl getoption layout:…` returns
# "no such option" and the keyword set is silently dropped.
CURRENT_VALUE=$(hyprctl getoption "dwindle:single_window_aspect_ratio" 2>/dev/null | head -1)

# Parse vec2 output: "vec2: [1, 1]" or "vec2: [0, 0]"
if [[ $CURRENT_VALUE == *"[1, 1]"* ]]; then
  hyprctl keyword dwindle:single_window_aspect_ratio "0 0"
  notify-send -u low "    Disable single-window square aspect ratio"
else
  hyprctl keyword dwindle:single_window_aspect_ratio "1 1"
  notify-send -u low "    Enable single-window square aspect"
fi
