Files
AstroVim_Config/.config/hypr/scripts/focusStateToRight.sh
2025-02-07 17:08:39 +07:00

19 lines
384 B
Bash

#!/bin/bash
# Lấy thông tin của cửa sổ hiện tại chỉ một lần
window_info=$(hyprctl activewindow)
window_state=$(echo "$window_info" | grep 'fullscreen:' | awk '{print $2}')
# NOTE: Di chuyển cửa sổ nếu vị trí X vượt qua ngưỡng
if [ $window_state -eq 1 ]; then
hyprctl dispatch focusmonitor 1
exit 0
fi
hyprctl dispatch movefocus r
exit 0