[wl_vimshot.sh]: Add wl_vimshot.sh

This commit is contained in:
2024-11-20 23:02:51 +00:00
parent d91bc95532
commit 8f622f1143
2 changed files with 19 additions and 0 deletions

18
wl_vimshot.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/sh
# Script to take a wait a few seconds before taking a screenshot to the filepath in the clipboard.
# For use as part of my LaTeX note-taking workflow in Vim: create the figure environment, copy the file name, invoke this script, and select the region in the source material to be screenshotted.
basename=$(basename "$0")
filepath=$(wl-paste)
# check if the filepath is absolute or relative, and if relative, make absolute
if [ "${filepath#\/}" = "$filepath" ] || [ "${filepath#\~}" = "$filepath" ]; then
filepath="$(pwd)/$filepath"
fi
notify-send "$basename" "Taking screenshot to $filepath"
sleep 5
grim -g "$(slurp)" "$filepath"
notify-send --icon "$filepath" "$basename" "Screenshot saved to: $filepath"