You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just adding a working example snippet from my config.
$SCRIPTS_DIR/pick_wallpaper.sh:
# Pick random wallpaper
random_pick=$(find "$wp_dir" -type f -name "*.png" -o -name "*.jpg"| shuf -n1)# Replace the placeholder in template and save to .conf file
sed -e "s~<wp>~${random_pick}~g"$conf_dir/templates/hyprpaper.template >$conf_dir/hyprpaper.conf
To randomly pick (shuffle) a wallpaper out of a set of wallpapers, I had
How can this be accomplished with
hyprpaper
?I want to avoid preloading all.
The text was updated successfully, but these errors were encountered: