mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
14 lines
264 B
Bash
Executable File
14 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=$HOME/.config/hypr/bg
|
|
PICS=($(ls ${DIR}))
|
|
|
|
RANDOMPICS=${PICS[ $RANDOM % ${#PICS[@]} ]}
|
|
|
|
if [[ $(pidof swaybg) ]]; then
|
|
pkill swaybg
|
|
fi
|
|
|
|
notify-send -i ${DIR}/${RANDOMPICS} "Wallpaper Changed" ${RANDOMPICS}
|
|
swaybg -m fill -i ${DIR}/${RANDOMPICS}
|