From e8da39c8227641e7cf9fff9c43addf52ca5230af Mon Sep 17 00:00:00 2001 From: cswimr Date: Tue, 22 Oct 2024 21:39:31 -0400 Subject: [PATCH] add `--pointer` to spectacle cli opts --- .zshc/func.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshc/func.zsh b/.zshc/func.zsh index 1ce907f..9d17828 100755 --- a/.zshc/func.zsh +++ b/.zshc/func.zsh @@ -129,9 +129,9 @@ function spectacle-screenshot { trap 'rm -f "$file"' ERR if $save_recording; then - command spectacle --nonotify --background --record=region --copy-image --output "$file" + command spectacle --nonotify --background --record=region --pointer --copy-image --output "$file" else - command spectacle --nonotify --background --region --copy-image --output "$file" + command spectacle --nonotify --background --region --pointer --copy-image --output "$file" fi [ ! -s "$file" ] && return 1