Initial commit
This commit is contained in:
commit
6c68373a7c
4
didder.cheat
Normal file
4
didder.cheat
Normal file
|
@ -0,0 +1,4 @@
|
|||
% didder
|
||||
|
||||
# didder gruvbox
|
||||
didder -i <inputfile> --palette "#b16286 #3c3836 #1d2021" -o <outputfile> bayer 16x16
|
7
gallery-dl.cheat
Normal file
7
gallery-dl.cheat
Normal file
|
@ -0,0 +1,7 @@
|
|||
% gallery-dl
|
||||
|
||||
# gallery-dl loop
|
||||
while read url; do
|
||||
gallery-dl "$url"
|
||||
figlet Done
|
||||
done
|
14
magick.cheat
Normal file
14
magick.cheat
Normal file
|
@ -0,0 +1,14 @@
|
|||
% magick
|
||||
|
||||
# Simple text on a background
|
||||
magick -font <font-list> -background <background-colour> -fill <foreground-colour> -pointsize <fontsize> label:'<text>' <file-name>
|
||||
|
||||
# Simple black text on a transparent background
|
||||
magick -font <font-list> -background transparent -fill white -pointsize <fontsize> label:'<text>' <file-name>
|
||||
|
||||
# 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
|
12
qcal.cheat
Normal file
12
qcal.cheat
Normal file
|
@ -0,0 +1,12 @@
|
|||
% qcal
|
||||
|
||||
# qcal new full day event
|
||||
qcal -n "<date> <description>"
|
||||
|
||||
# qcal new event with startand end time
|
||||
qcal -n "<date> <start-time> <end-time> <description>"
|
||||
|
||||
# qcal new repeating event
|
||||
qcal -n "<date> <description>" -r <interval>
|
||||
|
||||
$ interval: printf "d\nw\nm\ny\n"
|
Loading…
Reference in a new issue