diff --git a/hypr/menu.list b/hypr/menu.list index 98e563d..8bcf1e1 100644 --- a/hypr/menu.list +++ b/hypr/menu.list @@ -1,7 +1,8 @@ -Screenshot full=hyprshot -m output -m DP-1 +Screenshot full=hyprshot -m active -m output Screenshot window=hyprshot -m window Screenshot region=hyprshot -m region Color Picker=hyprpicker --autocopy Hypertension=xdg-open ~/Documents/Private-Documents/High-Blood-Preassure-test-results.ods Emoji Picker=~/.config/hypr/scripts/emoji-picker.py Shortcuts=~/.config/hypr/scripts/cheatsheet.py ~/.config/hypr/shortcuts.txt +Mirror Display=~/.config/hypr/scripts/monitor-mirror.sh diff --git a/hypr/scripts/monitor-mirror.sh b/hypr/scripts/monitor-mirror.sh new file mode 100755 index 0000000..72e4ed1 --- /dev/null +++ b/hypr/scripts/monitor-mirror.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# Toggle: mirror the internal display to the first connected external monitor. +# Travel use case — plug into a conference room TV/projector via HDMI, press +# the bound key, and the external mirrors the laptop. Press again to revert +# to the host's default monitor layout (via hyprctl reload). + +set -u + +internal="eDP-1" + +external=$(hyprctl monitors -j | jq -r ".[] | select(.name != \"$internal\") | .name" | head -n1) + +if [[ -z "$external" ]]; then + notify-send "Mirror" "No external display connected" + exit 0 +fi + +mirror_of=$(hyprctl monitors -j | jq -r ".[] | select(.name == \"$external\") | .mirrorOf // \"\"") + +if [[ -n "$mirror_of" ]]; then + hyprctl reload + notify-send "Mirror" "Off — reverted to default layout" +else + hyprctl keyword monitor "$external,preferred,auto,1,mirror,$internal" + notify-send "Mirror" "On — $internal → $external" +fi