change manythings

This commit is contained in:
2026-06-25 11:33:22 +07:00
parent b9e75b0ff7
commit 3ed4afab73
29 changed files with 1745 additions and 14 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
# Rotate wallpaper every 20 minutes from /sync/images/wallpapers/
while true; do
img=$(find /sync/images/wallpapers/ -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" \) | shuf -n1)
[ -n "$img" ] && feh --bg-fill "$img"
sleep 1200
done