#!/bin/sh BACKS="/usr/share/backgrounds" BACKS="/home/cynerd/src/lnxpcs/walls/solarized-dark" # Set background if [ -n "$DISPLAY" ]; then # Only current one feh --randomize --no-fehbg --bg-center "$BACKS" else # All instances for socket in `find /tmp/i3-* -name ipc-socket\*`; do i3-msg -s $socket "exec feh --randomize --no-fehbg --bg-center '$BACKS'" done fi # Set cron if ! crontab -l | grep -q i3background; then TCRN="$(mktemp)" crontab -l > "$TCRN" echo "* * * * * i3background" >> "$TCRN" crontab "$TCRN" rm "$TCRN" fi