dotfiles/de/home/.config/sway/scripts/floating_toggle.sh
2025-07-16 16:57:07 -07:00

14 lines
597 B
Bash
Executable file

#!/bin/bash
swaymsg floating toggle
active_window_scratchstate="$(swaymsg -t get_tree | jq -r '.. | select(.type?) | select(.focused==true).type')"
if [[ "${active_window_type}" == "floating_con" ]];then
active_screen_dim="$(swaymsg -t get_outputs | jq -r '.. | select(.type?) | select(.focused==true).rect')"
active_screen_width="$(jq '.width' <<<${active_screen_dim})"
active_screen_height="$(jq '.height' <<<${active_screen_dim})"
if [[ "${active_screen_width}" -gt "${active_screen_height}" ]];then
swaymsg resize set 50ppt 50ppt
else
swaymsg resize set 75ppt 25ppt
fi
fi