mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
12 lines
337 B
Bash
Executable File
12 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OUTPUT_DIR="${OMARCHY_SCREENSHOT_DIR:-$HOME/Pictures}"
|
|
|
|
pkill slurp || hyprshot -m ${1:-region} --raw |
|
|
satty --filename - \
|
|
--output-filename "$OUTPUT_DIR/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png" \
|
|
--early-exit \
|
|
--actions-on-enter save-to-clipboard \
|
|
--save-after-copy \
|
|
--copy-command 'wl-copy'
|