💾 Archived View for ait.place › dot › bin › sscull.txt captured on 2022-07-16 at 13:50:44.
-=-=-=-=-=-=-
#!/usr/bin/env bash # settings ssdir="${XDG_PICTURES_DIR:-$HOME/Pictures}/screenshots" # screenshots folder maxsize=50 # (megabytes) size at which stuff starts getting deleted #################################################################### # If the total size of files in the directory exceeds maxsize # # files will be deleted, oldest first, until total size is less # # than maxsize # #################################################################### maxbytes=$(( maxsize * 1000000 )) currbytes=$(du -b $ssdir | cut -f 1 -d