Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

### 2025-12-16

grimblast: fix wait for area when frozen

### 2025-12-07

hyprosd-mako: add OSD scripts for volume, brightness, and microphone

### 2025-11-29
Expand Down
3 changes: 2 additions & 1 deletion grimblast/grimblast
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ output() {

area() {
local fullscreen_workspaces workspaces windows
grimblast::wait
[[ $CURSOR ]] && die "'-c|--cursor' cannot be used with TARGET 'area'"

if [[ $FREEZE ]] && grimblast::check -q hyprpicker; then
Expand All @@ -233,6 +232,8 @@ area() {
IFS=' ' read -ra SLURP_ARGS <<<"$SLURP_ARGS"
GEOM="$(jq -r '.[] | "\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"' <<<"$windows" | slurp "${SLURP_ARGS[@]}")"

grimblast::wait

# Check if user exited slurp without selecting the area
[[ $GEOM ]] || {
killhyprpicker
Expand Down