2025-11-28 16:44:06 -08:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
|
|
local WALLPAPERS_DIR="${HOME}/pics/wallpapers/"
|
|
|
|
|
|
|
|
|
|
case "${HOST}" in
|
|
|
|
|
*-desktop)
|
2026-06-15 18:05:27 -07:00
|
|
|
exec swaybg -o DP-1 -m fill -i "${WALLPAPERS_DIR}/fapta.png" \
|
|
|
|
|
-o DP-2 -m fill -i "${WALLPAPERS_DIR}/fapta.png" \
|
|
|
|
|
-o DP-3 -m fill -i "${WALLPAPERS_DIR}/Veko and Friend.png" \
|
|
|
|
|
-o HDMI-A-1 -m fill -i "${WALLPAPERS_DIR}/fapta.png"
|
2025-11-28 16:44:06 -08:00
|
|
|
;;
|
|
|
|
|
*-portable)
|
|
|
|
|
exec swaybg -m fill -o '*' -i "${WALLPAPERS_DIR}/Girls Last Tour 2.jpg"
|
|
|
|
|
;;
|
|
|
|
|
esac
|