feat: write screenshot + ocr scripts
This commit is contained in:
7
.local/bin/screenshot-gui
Executable file
7
.local/bin/screenshot-gui
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
# Take screenshot w/ selection tools, save to ~/Pictures/Screenshots, and also
|
||||
# write the image to a temp file (so we can put the image in the clipboard also)
|
||||
if flameshot gui -r --path ~/Pictures/Screenshots > /tmp/flameshot_screenshot.png; then
|
||||
xclip -selection clipboard -t image/png < /tmp/flameshot_screenshot.png;
|
||||
fi
|
||||
Reference in New Issue
Block a user