dev: automated commit - 2025-10-08 14:25:23

This commit is contained in:
Mariano Z. 2025-10-08 14:25:23 -03:00
parent 6d31ca4734
commit a766ae0099
3 changed files with 19 additions and 24 deletions

View file

@ -16,8 +16,15 @@ case "$(hostname)" in
done
;;
"fw")
# Set specific wallpaper for fw host
swww img "$HOME/Pictures/hwtioswoamne1.jpeg" --transition-type center --transition-step 120 --transition-fps 144
# # Set specific wallpaper for fw host
# swww img "$HOME/Pictures/hwtioswoamne1.jpeg" --transition-type center --transition-step 120 --transition-fps 144
# ;;
#
# Get all outputs and set random wallpapers with transitions
swaymsg -t get_outputs -r | jq -r ".[].name" | while read -r output; do
random_wallpaper=$(find ~/Pictures/* -type f | shuf -n 1)
swww img "$random_wallpaper" --outputs "$output" --transition-type center --transition-step 120 --transition-fps 144 &
done
;;
*)
echo "Unknown hostname: $(hostname)"