5 lines
252 B
Bash
Executable file
5 lines
252 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# docstring=do a screenshots on wayland compositors
|
|
set -E -o pipefail
|
|
|
|
grim -g "$(slurp -o -r -c '#ff0000ff')" - | satty --filename - --fullscreen --output-filename ~/Media/Pictures/Screenshots/satty-$(date '+%Y%m%d-%H:%M:%S').png
|