14 lines
375 B
Bash
14 lines
375 B
Bash
#!/usr/bin/env zsh
|
|||
|
|
|
||
|
|
local WALLPAPERS_DIR="${HOME}/pics/wallpapers/"
|
||
|
|
|
||
|
|
case "${HOST}" in
|
||
|
|
*-desktop)
|
||
|
|
exec swaybg -o DP-1 -m fill -i "${WALLPAPERS_DIR}/fapta.png" \
|
||
|
|
-o DP-3 -m fill -i "${WALLPAPERS_DIR}/Veko and Friend.png"
|
||
|
|
;;
|
||
|
|
*-portable)
|
||
|
|
exec swaybg -m fill -o '*' -i "${WALLPAPERS_DIR}/Girls Last Tour 2.jpg"
|
||
|
|
;;
|
||
|
|
esac
|