Files
.dotfiles/dotfiles/config/hypr/scripts/bgaction
2023-07-12 21:18:59 +08:00

15 lines
344 B
Bash
Executable File

#!/usr/bin/bash
#start swwww
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 -o DP-2 ~/.config/hypr/wallpaper-dark.jpg
else
swww img -o DP-2 ~/.config/hypr/wallpaper.jpg
fi