From 82df70eff06e7b44ee84283070d7f801f7fc1d92 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sat, 6 Nov 2021 20:25:45 -0400 Subject: initial commit --- .local/bin/windowshot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 .local/bin/windowshot (limited to '.local/bin/windowshot') diff --git a/.local/bin/windowshot b/.local/bin/windowshot new file mode 100755 index 0000000..a7b143b --- /dev/null +++ b/.local/bin/windowshot @@ -0,0 +1,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" + -- cgit v1.2.3