Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update nix shell and compress-images to work properly

+5 -16
+2 -16
compress-images.sh
··· 1 - #!/bin/bash 2 - 3 - if command -v jpegoptim >/dev/null 2>&1 ; then 4 - echo "jpegoptim found" 5 - find ./dist \( -iname "*.jpg" -o -iname "*.jpeg" \) | jpegoptim -p -P --files-stdin -w $(nproc --all) 6 - else 7 - echo "jpegoptim was not found! install either with your package manager or get the binary from the github" 8 - echo "https://github.com/tjko/jpegoptim/releases/latest" 9 - fi 1 + find ./dist \( -iname "*.jpg" -o -iname "*.jpeg" \) | jpegoptim -p -P --files-stdin -w $(nproc --all) 2 + oxipng -o max -a -r ./dist 10 3 11 - if command -v oxipng >/dev/null 2>&1 ; then 12 - echo "oxipng found" 13 - oxipng -o max -a -r ./dist 14 - else 15 - echo "oxipng was not found! install with your package manager, cargo or get the binary from the github" 16 - echo "https://github.com/shssoichiro/oxipng/releases/latest" 17 - fi
+3
shell.nix
··· 7 7 pkgs.nodejs 8 8 pkgs.pnpm 9 9 pkgs.biome 10 + pkgs.oxipng 11 + pkgs.jpegoptim 12 + pkgs.croc 10 13 ]; 11 14 }