This repository has been archived on 2025-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
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"