my dotz
2
fork

Configure Feed

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

Add nostromo filesz

j3s b0215c36 6c6b5cd5

+24
+4
bin/nostromo/pastesrv
··· 1 + #!/bin/sh 2 + 3 + ssh c3f.net "cat > /usr/share/nginx/paste/$1" 4 + echo "https://p.c3f.net/$1"
+7
bin/nostromo/scr
··· 1 + #!/bin/sh 2 + 3 + if [ "$1" = "" ]; then 4 + grim -g "$(slurp)" "$HOME/pix/ss/$(date +%s).png" 5 + elif [ "$1" = "stdout" ]; then 6 + grim -g "$(slurp)" -t png - 7 + fi
+13
bin/nostromo/taste
··· 1 + for fgbg in $(seq 38 48) ; do # Foreground / Background 2 + for color in $(seq 238 255) ; do # Colors 3 + # Display the color 4 + printf "\e[${fgbg};5;%sm %3s \e[0m" $color $color 5 + # Display 6 colors per lines 6 + if [ $((($color + 1) % 6)) == 4 ] ; then 7 + echo # New line 8 + fi 9 + done 10 + echo # New line 11 + done 12 + 13 + exit 0