Files
dotfiles/deprecated/hypr/scripts/changeWallpaper
2023-12-04 09:44:54 +08:00

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}