* Keyboard window capture in the region picker: Ctrl+Return, Tab, arrows Return already captures the entire focused monitor while slurp is open, but grabbing a single window required the mouse: hover highlights a window, a click captures it. Now the keyboard can do the same. Ctrl+Return captures the selected window — the one under the cursor, falling back to the focused window. Tab and Ctrl+Tab cycle that selection through the workspace's windows in reading order, and the arrow keys move it spatially; both warp the cursor to the target window's center, so slurp's own hover highlight tracks the selection. Ctrl+Return is implemented like --take-fullscreen: a layer-scoped bind flags the intent via a marker file and dismisses slurp, and the picker resolves the window under the cursor. On an empty workspace the pick resolves to nothing and exits as cancelled. Ctrl is the chord modifier because slurp reacts to held Shift by squaring the selection's aspect ratio, which visibly reshapes the hover highlight mid-chord. None of the keys slurp itself uses (Escape, held Space to move a selection, held Shift) are bound, so its own keyboard behavior is unchanged. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Resolve overlapping windows the way slurp highlights them slurp highlights the smallest box under the cursor, but the capture and selection hit-tests returned the first geometric match in hyprctl clients order. With a floating window over a tiled one, Ctrl+Return could capture the window underneath the visibly highlighted one. Track the smallest containing window instead, in both the capture resolution and the selection-movement origin. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Document the region picker's keyboard modes in its usage line Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Resolve keyboard capture and navigation from one rectangle list Duplicate window geometry (tabbed groups, stacked floating windows) stalled the Tab cycle on the first copy, and the smallest-window-under-cursor tie-break was applied to two differently ordered lists, so navigation could cycle from one window while Ctrl+Return captured another. Ctrl+Return over a gap or an empty workspace also ignored the monitor rectangle slurp was highlighting. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Capture the highlighted window with Return, the display with Ctrl+Return The picker highlights a window under the cursor far more often than a whole display, so the unmodified key takes the highlighted rectangle. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: David Heinemeier Hansson <david@hey.com>
319 lines
9.5 KiB
Bash
Executable File
319 lines
9.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Pick a screen region over frozen screen content
|
|
# omarchy:args=[region|windows|smart|fullscreen] [--keep-freeze] [--match-monitor] | --take-fullscreen | --take-window | --select-window <next|prev|left|right|up|down>
|
|
# omarchy:hidden=true
|
|
|
|
# Prints the picked geometry in slurp's "X,Y WxH" format, or exits 1 when the
|
|
# pick is cancelled. Shared by screenshot and screen recording so the picker
|
|
# UX stays identical.
|
|
#
|
|
# region freeform selection
|
|
# windows snap selection to a monitor or window rectangle
|
|
# smart freeform with window/monitor rects hinted; a bare click
|
|
# (area < 20px^2) snaps to the rectangle it landed in
|
|
# fullscreen the focused monitor, no interaction
|
|
#
|
|
# --keep-freeze leave the hyprpicker screen freeze running and print its
|
|
# PID as the first output line (empty when no freeze was
|
|
# started); the caller owns killing it
|
|
# --match-monitor print "monitor:NAME" instead when the picked geometry
|
|
# exactly matches a monitor
|
|
|
|
FULLSCREEN_MARKER="${XDG_RUNTIME_DIR:-/tmp}/omarchy-capture-region-fullscreen"
|
|
WINDOW_MARKER="${XDG_RUNTIME_DIR:-/tmp}/omarchy-capture-region-window"
|
|
|
|
# accounting for portrait/transformed displays
|
|
JQ_MONITOR_GEO='
|
|
def format_geo:
|
|
.x as $x | .y as $y |
|
|
(.width / .scale | floor) as $w |
|
|
(.height / .scale | floor) as $h |
|
|
.transform as $t |
|
|
if $t == 1 or $t == 3 then
|
|
"\($x),\($y) \($h)x\($w)"
|
|
else
|
|
"\($x),\($y) \($w)x\($h)"
|
|
end;
|
|
'
|
|
|
|
active_workspace() {
|
|
hyprctl monitors -j | jq -r '.[] | select(.focused == true) | .activeWorkspace.id'
|
|
}
|
|
|
|
# Hidden group members and windows stacked at identical geometry collapse to
|
|
# one rectangle: slurp cannot tell them apart, and duplicates would stall the
|
|
# Tab cycle on the first copy.
|
|
window_rects() {
|
|
hyprctl clients -j | jq -r --arg ws "$(active_workspace)" \
|
|
'[.[] | select(.workspace.id == ($ws | tonumber) and .hidden != true) | "\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"] | unique[]'
|
|
}
|
|
|
|
monitor_rects() {
|
|
hyprctl monitors -j | jq -r --arg ws "$(active_workspace)" "${JQ_MONITOR_GEO} .[] | select(.activeWorkspace.id == (\$ws | tonumber)) | format_geo"
|
|
}
|
|
|
|
get_rectangles() {
|
|
monitor_rects
|
|
window_rects
|
|
}
|
|
|
|
focused_monitor_geo() {
|
|
hyprctl monitors -j | jq -r "${JQ_MONITOR_GEO} .[] | select(.focused == true) | format_geo"
|
|
}
|
|
|
|
# slurp highlights the smallest box containing the cursor and keeps the first
|
|
# one on a tie, so overlapping rectangles resolve the same way here (e.g.
|
|
# floating over tiled). Reads candidates on stdin, exits 1 when none match.
|
|
smallest_rect_at() {
|
|
local x=$1 y=$2
|
|
local rect area
|
|
local smallest=""
|
|
local smallest_area=0
|
|
|
|
while IFS= read -r rect; do
|
|
[[ $rect =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]] || continue
|
|
((x >= BASH_REMATCH[1] && x < BASH_REMATCH[1] + BASH_REMATCH[3] && y >= BASH_REMATCH[2] && y < BASH_REMATCH[2] + BASH_REMATCH[4])) || continue
|
|
|
|
area=$((BASH_REMATCH[3] * BASH_REMATCH[4]))
|
|
if [[ -z $smallest ]] || ((area < smallest_area)); then
|
|
smallest=$rect
|
|
smallest_area=$area
|
|
fi
|
|
done
|
|
|
|
[[ -n $smallest ]] || return 1
|
|
echo "$smallest"
|
|
}
|
|
|
|
# Whatever slurp is highlighting under the cursor. It is fed monitor rects as
|
|
# well as window rects, so a cursor in a gap or over the bar highlights the
|
|
# monitor rather than any window.
|
|
geo_at_cursor() {
|
|
local pos=$(hyprctl cursorpos)
|
|
local x=${pos%,*}
|
|
local y=${pos#*, }
|
|
|
|
smallest_rect_at "$x" "$y" < <(window_rects) ||
|
|
smallest_rect_at "$x" "$y" < <(monitor_rects) ||
|
|
focused_monitor_geo
|
|
}
|
|
|
|
# Keyboard control while slurp is open: binds scoped to slurp's layer
|
|
# surface (default/hypr/bindings/utilities.lua) invoke these modes. The
|
|
# --take-* modes flag the intent with a marker file and dismiss slurp.
|
|
if [[ ${1:-} == "--take-fullscreen" ]]; then
|
|
pgrep -x slurp >/dev/null || exit 0
|
|
touch "$FULLSCREEN_MARKER"
|
|
pkill -x slurp
|
|
exit 0
|
|
fi
|
|
|
|
if [[ ${1:-} == "--take-window" ]]; then
|
|
pgrep -x slurp >/dev/null || exit 0
|
|
touch "$WINDOW_MARKER"
|
|
pkill -x slurp
|
|
exit 0
|
|
fi
|
|
|
|
# Warps the cursor to another window's center, so slurp's own hover
|
|
# highlight tracks the selection.
|
|
if [[ ${1:-} == "--select-window" ]]; then
|
|
pgrep -x slurp >/dev/null || exit 0
|
|
|
|
direction=${2:-}
|
|
pos=$(hyprctl cursorpos)
|
|
origin_x=${pos%,*}
|
|
origin_y=${pos#*, }
|
|
|
|
candidates=$(window_rects)
|
|
|
|
# Reading order: top-to-bottom, then left-to-right.
|
|
rects=$(while IFS= read -r rect; do
|
|
[[ $rect =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]] || continue
|
|
printf '%d\t%d\t%s\n' "${BASH_REMATCH[2]}" "${BASH_REMATCH[1]}" "$rect"
|
|
done <<<"$candidates" | sort -n -k1,1 -k2,2 | cut -f3-)
|
|
[[ -n $rects ]] || exit 0
|
|
|
|
# The selection to move from is the one slurp highlights, resolved from the
|
|
# same list in the same order as --take-window so navigation and capture
|
|
# never disagree. Measure from its center.
|
|
current=$(smallest_rect_at "$origin_x" "$origin_y" <<<"$candidates")
|
|
|
|
if [[ $current =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]]; then
|
|
origin_x=$((BASH_REMATCH[1] + BASH_REMATCH[3] / 2))
|
|
origin_y=$((BASH_REMATCH[2] + BASH_REMATCH[4] / 2))
|
|
fi
|
|
|
|
target=""
|
|
|
|
case $direction in
|
|
next | prev)
|
|
mapfile -t ordered <<<"$rects"
|
|
count=${#ordered[@]}
|
|
current_index=-1
|
|
|
|
for i in "${!ordered[@]}"; do
|
|
if [[ -n $current && ${ordered[i]} == "$current" ]]; then
|
|
current_index=$i
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [[ $direction == next ]]; then
|
|
target=${ordered[$(((current_index + 1) % count))]}
|
|
elif ((current_index == -1)); then
|
|
target=${ordered[count - 1]}
|
|
else
|
|
target=${ordered[$(((current_index - 1 + count) % count))]}
|
|
fi
|
|
;;
|
|
left | right | up | down)
|
|
best_score=""
|
|
|
|
while IFS= read -r rect; do
|
|
[[ $rect == "$current" ]] && continue
|
|
[[ $rect =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]] || continue
|
|
center_x=$((BASH_REMATCH[1] + BASH_REMATCH[3] / 2))
|
|
center_y=$((BASH_REMATCH[2] + BASH_REMATCH[4] / 2))
|
|
|
|
case $direction in
|
|
left)
|
|
primary=$((origin_x - center_x))
|
|
perp=$((center_y - origin_y))
|
|
;;
|
|
right)
|
|
primary=$((center_x - origin_x))
|
|
perp=$((center_y - origin_y))
|
|
;;
|
|
up)
|
|
primary=$((origin_y - center_y))
|
|
perp=$((center_x - origin_x))
|
|
;;
|
|
down)
|
|
primary=$((center_y - origin_y))
|
|
perp=$((center_x - origin_x))
|
|
;;
|
|
esac
|
|
|
|
((primary > 0)) || continue
|
|
((perp < 0)) && perp=$((-perp))
|
|
score=$((primary + perp * 2))
|
|
|
|
if [[ -z $best_score ]] || ((score < best_score)); then
|
|
best_score=$score
|
|
target=$rect
|
|
fi
|
|
done <<<"$rects"
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
if [[ $target =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]]; then
|
|
target_x=$((BASH_REMATCH[1] + BASH_REMATCH[3] / 2))
|
|
target_y=$((BASH_REMATCH[2] + BASH_REMATCH[4] / 2))
|
|
hyprctl eval "hl.dispatch(hl.dsp.cursor.move({ x = $target_x, y = $target_y }))" >/dev/null
|
|
fi
|
|
exit 0
|
|
fi
|
|
|
|
MODE=smart
|
|
KEEP_FREEZE=false
|
|
MATCH_MONITOR=false
|
|
|
|
for arg in "$@"; do
|
|
case $arg in
|
|
--keep-freeze) KEEP_FREEZE=true ;;
|
|
--match-monitor) MATCH_MONITOR=true ;;
|
|
*) MODE=$arg ;;
|
|
esac
|
|
done
|
|
|
|
# Runs slurp; an empty result with a marker present means one of the --take-*
|
|
# binds was pressed, so the highlighted rectangle or the monitor is the
|
|
# selection.
|
|
pick() {
|
|
local selection
|
|
rm -f "$FULLSCREEN_MARKER" "$WINDOW_MARKER"
|
|
selection=$(slurp "$@" 2>/dev/null)
|
|
|
|
if [[ -z $selection && -e $FULLSCREEN_MARKER ]]; then
|
|
rm -f "$FULLSCREEN_MARKER"
|
|
selection=$(focused_monitor_geo)
|
|
elif [[ -z $selection && -e $WINDOW_MARKER ]]; then
|
|
rm -f "$WINDOW_MARKER"
|
|
selection=$(geo_at_cursor)
|
|
fi
|
|
|
|
printf '%s' "$selection"
|
|
}
|
|
|
|
FREEZE_PID=""
|
|
freeze_screen() {
|
|
hyprpicker -r -z >/dev/null 2>&1 &
|
|
FREEZE_PID=$!
|
|
sleep .1
|
|
}
|
|
|
|
cleanup_freeze() {
|
|
[[ $KEEP_FREEZE == true ]] && return
|
|
[[ -n $FREEZE_PID ]] && kill $FREEZE_PID 2>/dev/null
|
|
}
|
|
trap cleanup_freeze EXIT
|
|
|
|
case "$MODE" in
|
|
region)
|
|
freeze_screen
|
|
SELECTION=$(pick)
|
|
;;
|
|
windows)
|
|
freeze_screen
|
|
SELECTION=$(get_rectangles | pick -r)
|
|
;;
|
|
fullscreen)
|
|
SELECTION=$(focused_monitor_geo)
|
|
;;
|
|
smart | *)
|
|
RECTS=$(get_rectangles)
|
|
freeze_screen
|
|
SELECTION=$(echo "$RECTS" | pick)
|
|
|
|
# A bare click (area < 20px^2) snaps to whichever rectangle it landed in,
|
|
# so users don't end up with accidental 2px captures. X and Y can be
|
|
# negative (Hyprland monitor positions in multi-display layouts).
|
|
if [[ $SELECTION =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]] && ((BASH_REMATCH[3] * BASH_REMATCH[4] < 20)); then
|
|
click_x=${BASH_REMATCH[1]}
|
|
click_y=${BASH_REMATCH[2]}
|
|
|
|
while IFS= read -r rect; do
|
|
[[ $rect =~ ^(-?[0-9]+),(-?[0-9]+)[[:space:]]([0-9]+)x([0-9]+)$ ]] || continue
|
|
rect_x=${BASH_REMATCH[1]}
|
|
rect_y=${BASH_REMATCH[2]}
|
|
rect_width=${BASH_REMATCH[3]}
|
|
rect_height=${BASH_REMATCH[4]}
|
|
|
|
if ((click_x >= rect_x && click_x < rect_x + rect_width && click_y >= rect_y && click_y < rect_y + rect_height)); then
|
|
SELECTION="${rect_x},${rect_y} ${rect_width}x${rect_height}"
|
|
break
|
|
fi
|
|
done <<<"$RECTS"
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
[[ $KEEP_FREEZE == true ]] && echo "$FREEZE_PID"
|
|
|
|
[[ -n $SELECTION ]] || exit 1
|
|
|
|
if [[ $MATCH_MONITOR == true ]]; then
|
|
monitor=$(hyprctl monitors -j | jq -r --arg geo "$SELECTION" "${JQ_MONITOR_GEO} .[] | select(format_geo == \$geo) | .name" | head -1)
|
|
if [[ -n $monitor ]]; then
|
|
echo "monitor:$monitor"
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
echo "$SELECTION"
|