loadout/awesome/bin/scrot.sh
mediocregopher 1957081c12 Update branch with all changes which could be brought in from private branches
For a while I was keeping a private branch where there were a lot of
non-public things included, and that became the de-facto branch while
this one lagged. This one is now up-to-date, all private stuff is dealt
with via config files which are not committed.
2023-08-13 21:35:17 +02:00

8 lines
110 B
Bash
Executable File

#!/bin/sh
set -e
mkdir -p ~/Screenshots
f="$HOME/Screenshots/shot-$(date +%s).png"
scrot -o -s "$f"
feh "$f"