#!/usr/bin/env bash activemonitor=$(hyprctl monitors -j | jq '.[] | select(.focused == true).id') activemonitorname=$(hyprctl monitors -j | jq -r '.[] | select(.focused == true).name') passivemonitor=$(hyprctl monitors -j | jq '.[] | select(.focused == false).id') activews=$(hyprctl monitors -j | jq '.[] | select(.focused == true).activeWorkspace.id') passivews=$(hyprctl monitors -j | jq '.[] | select(.focused == false).activeWorkspace.id') [[ $1 -eq $passivews ]] && [[ $passivemonitor != "$activemonitor" ]] && (hyprctl dispatch swapactiveworkspaces "$activemonitor $passivemonitor") hyprctl dispatch moveworkspacetomonitor "$1 $activemonitor" hyprctl dispatch focusmonitor "$activemonitor" hyprctl dispatch workspace "$1" hyprctl hyprpaper wallpaper "$activemonitorname,/etc/nixos/config/hypr/wallpaper.png"