Skip to content

Instantly share code, notes, and snippets.

@Diaoul
Diaoul / monitors.sh
Last active May 18, 2025 15:13
Arrange workspace on multiple monitors (Hyprland)
#!/usr/bin/env bash
# IMPORTANT: this script is now part of my dotfiles and maintained there
# see https://github.com/Diaoul/dotfiles/blob/main/.config/hypr/scripts/workspaces.sh
set -e
declare -i last_called=0
declare -i throttle_by=4
@throttle() {
local -i now=$(date +%s)
#!/bin/bash
function move() {
# move a workspace to the appropriate monitor
local workspace_id=$1
shift
local monitors=($@)
if [[ ${#monitors[@]} == 0 ]]; then
monitors=($(hyprctl monitors -j | jq -r '.[].name'))