#!/bin/sh while getopts "lr" o; do case "${o}" in l) DIR='l' ;; r) DIR='r' ;; esac done case "$DIR" in 'l') hyprctl dispatch layoutmsg movewindowto 'l' hyprctl dispatch layoutmsg focus 'd' hyprctl dispatch layoutmsg promote hyprctl dispatch layoutmsg focus 'l' ;; 'r') hyprctl dispatch layoutmsg movewindowto 'r' hyprctl dispatch layoutmsg promote hyprctl dispatch layoutmsg focus 'l' hyprctl dispatch layoutmsg focus 'r' ;; esac