summaryrefslogtreecommitdiff
path: root/.local/bin/windowshot
blob: a7b143bb92ed9ddd71fbcd9b6e8fe034fa03d3ba (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Take screenshot of current window
# Saves screenshot with timestamp in directory named after the date

time=$(date +%b-%d-%Y-%T.%N)
day=$(date +%b-%d-%Y)
[ -d "~/pictures/screenshots/$day" ] || mkdir -p ~/pictures/screenshots/$day
maim > ~/pictures/screenshots/$day/$time.png && notify-send "Screenshot Taken"