commit 6c68373a7cd90ff94e35315bf743c0acb8a11587 Author: Marty Sluijtman Date: Sat Dec 30 02:33:21 2023 +0100 Initial commit diff --git a/didder.cheat b/didder.cheat new file mode 100644 index 0000000..60b4e48 --- /dev/null +++ b/didder.cheat @@ -0,0 +1,4 @@ +% didder + +# didder gruvbox +didder -i --palette "#b16286 #3c3836 #1d2021" -o bayer 16x16 diff --git a/gallery-dl.cheat b/gallery-dl.cheat new file mode 100644 index 0000000..3ba6852 --- /dev/null +++ b/gallery-dl.cheat @@ -0,0 +1,7 @@ +% gallery-dl + +# gallery-dl loop +while read url; do + gallery-dl "$url" + figlet Done +done diff --git a/magick.cheat b/magick.cheat new file mode 100644 index 0000000..ba58834 --- /dev/null +++ b/magick.cheat @@ -0,0 +1,14 @@ +% magick + +# Simple text on a background +magick -font -background -fill -pointsize label:'' + +# Simple black text on a transparent background +magick -font -background transparent -fill white -pointsize label:'' + +# list fonts +magick -list font | less + +$ font-list: magick -list font | sed -n 's/\W*Font: //p' +$ background-colour: magick -list color | awk '{print$1}' | grep -v 'gray\|grey' | tail -n +6 +$ foreground-colour: magick -list color | awk '{print$1}' | grep -v 'gray\|grey' | tail -n +6 diff --git a/qcal.cheat b/qcal.cheat new file mode 100644 index 0000000..e73abfc --- /dev/null +++ b/qcal.cheat @@ -0,0 +1,12 @@ +% qcal + +# qcal new full day event +qcal -n " " + +# qcal new event with startand end time +qcal -n " " + +# qcal new repeating event +qcal -n " " -r + +$ interval: printf "d\nw\nm\ny\n"