diff --git a/README.md b/README.md index c0a498e3..a2cc4be7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,18 @@ -Brainbaking.com hugo site. +# Brainbaking.com hugo site. +Source now self-hosted at `git.brainbaking.com`! ### Screenshot png - jpg conversion -1. find . -name "*.png" -exec convert {} -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace sRGB {}.jpg \; -2. find ./ -name "*.png.jpg" -exec sh -c 'mv $0 `basename "$0" .png.jpg`.jpg' '{}' \; \ No newline at end of file +``` +find . -name "*.png" -exec convert {} -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace sRGB {}.jpg \; +find ./ -name "*.png.jpg" -exec sh -c 'mv $0 `basename "$0" .png.jpg`.jpg' '{}' \; +``` + +Using montage to stick together two screenshots: + +``` +montage TMHT\ FOOT\ CLAN-1.png TMHT\ FOOT\ CLAN-5.png -tile 2x1 -geometry +2+2 boss-still.png +convert -filter box -resize x400 boss-still.png boss-still.png +``` +