#!/bin/sh -e # # Show a pixelated screenshot as background image of i3lock # # See # Copied from # screenshot="${TMPDIR:-/tmp}/fuzzy-swaylock.png" grim "$screenshot" case $1 in "37c3") mogrify -scale 10% -scale 500% -dither FloydSteinberg -colors 32 -scale 200% "$screenshot" ;; *) mogrify -scale 10% -scale 1000% "$screenshot" ;; esac exec swaylock -i "$screenshot"