#!/bin/sh -e # # Show a pixelated screenshot as background image of i3lock # # See # Copied from # screenshot="${TMPDIR:-/tmp}/fuzzy-i3lock.png" scrot "$screenshot" mogrify -scale 10% -scale 1000% "$screenshot" exec i3lock -i "$screenshot"