6 lines
90 B
Plaintext
6 lines
90 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
IMG="$HOME/images/"$(ls ~/images/ | sort -R | head -1)
|
||
|
|
||
|
feh --bg-fill "$IMG"
|