From 7b79203f54853733d4fae88943829d0e24e6e49f Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sun, 7 Jan 2024 12:00:08 -0500 Subject: massive overhaul --- bin/hyprland/workspace | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 bin/hyprland/workspace (limited to 'bin/hyprland') diff --git a/bin/hyprland/workspace b/bin/hyprland/workspace new file mode 100755 index 0000000..8be4593 --- /dev/null +++ b/bin/hyprland/workspace @@ -0,0 +1,13 @@ +#!/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" -- cgit v1.2.1