12 lines
161 B
Bash
Executable File
12 lines
161 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ "$XDG_SESSION_TYPE" != "wayland" ]; then
|
|
echo "this script only supports wayland"
|
|
exit 1
|
|
fi
|
|
|
|
DIMS="$(slurp)"
|
|
|
|
grim -g "$DIMS" - | pbc
|
|
|