updated scripts

This commit is contained in:
Niklas Kapelle 2024-03-31 23:16:00 +02:00
parent 45e1045a90
commit 71abf58c40
Signed by: niklas
GPG Key ID: 4EB651B36D841D16
3 changed files with 23 additions and 5 deletions

View File

@ -2,4 +2,4 @@
git add -A
git commit -m "$(curl http://whatthecommit.com/index.txt)"
git push

View File

@ -0,0 +1,20 @@
#!/usr/bin/env sh
# Make a screenshots and save it in ~/pictures/screenshots
set -e
SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
SCREENSHOT_DIR="$HOME/pictures/screenshots"
screenshotFile=$($SCRIPTPATH/take-screenshot.sh)
mkdir -p "$SCREENSHOT_DIR"
mv "$screenshotFile" "$SCREENSHOT_DIR"
rm -rf "$(dirname $screenshotFile)"
printf "%s\n" "$SCREENSHOT_DIR/$(basename $screenshotFile)"

View File

@ -1,8 +1,6 @@
#!/usr/bin/env sh
# makes a selection screenshot and prints out the filename in a date format
# not intended for direct use. Dosn't remove tmp dir
# required packages:
# - deepin-screenshot
# Make a selection of the screen and take a screenshot. Save it to tmp and print its path.
set -e