Files
.dotfiles/dotfiles/config/hypr/scripts/bgaction
2023-04-16 21:38:29 +08:00

14 lines
341 B
Bash
Executable File

#!/usr/bin/bash
#start swwww
swww query || swww init
#figure out which waybar theme is set
THEMEIS=$(readlink -f ~/.config/waybar/style.css | cut -d '-' -f2)
#show the correct wallpapper based on the theme
if [ $THEMEIS == "dark.css" ]; then
swww img ~/.config/hypr/wallpaper-dark.jpg
else
swww img ~/.config/hypr/wallpaper.jpg
fi