nix is now the master #1

Merged
niklas merged 21 commits from nix into master 2024-06-01 19:12:44 +00:00
3 changed files with 23 additions and 5 deletions
Showing only changes of commit 71abf58c40 - Show all commits

View File

@ -2,4 +2,4 @@
git add -A git add -A
git commit -m "$(curl http://whatthecommit.com/index.txt)" 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 #!/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 # Make a selection of the screen and take a screenshot. Save it to tmp and print its path.
# required packages:
# - deepin-screenshot
set -e set -e