mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 11:53:17 -09:00
10 lines
204 B
Bash
Executable File
10 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -f ~/Pictures/screenshot.png ]]; then
|
|
rm ~/Pictures/screenshot.png
|
|
fi
|
|
|
|
scrot ~/Pictures/screenshot.png
|
|
convert ~/Pictures/screenshot.png -crop 1920x1080+0+0 ~/Pictures/screenshot.png
|
|
|