This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
home/.bin/i3-randwall

5 lines
112 B
Bash
Executable File

#!/bin/bash
walls=($HOME/Pictures/Wallpapers/i3/*)
wall=${walls[$RANDOM % ${#walls[@]} ]}
feh --bg-fill "$wall"