4 lines
170 B
Plaintext
4 lines
170 B
Plaintext
|
#!/bin/bash
|
||
|
selection=$(find $WALLPAPER_DIR -type f -name "*.jpg" -o -name "*.png" | shuf -n1)
|
||
|
gsettings set org.gnome.desktop.background picture-uri "file://$selection"
|