9 lines
246 B
Bash
9 lines
246 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Ferit Yiğit BALABAN, <fybalaban@fybx.dev>
|
|
#
|
|
# Select an area with slurp, ss with grim
|
|
# and copy to clipboard.
|
|
export GRIM_DEFAULT_DIR="$HOME/items/ss"
|
|
grim -g "$( slurp )" - | wl-copy --type image/png
|