2024-01-16 10:08:31 -03:00
|
|
|
#!/bin/sh
|
|
|
|
SWWW_TRANSITION_STEP=1
|
|
|
|
SWWW_TRANSITION_FPS=60
|
|
|
|
SWWW_TRANSITION="grow"
|
|
|
|
|
|
|
|
swww-daemon &
|
|
|
|
|
2024-01-16 12:56:51 -03:00
|
|
|
current_theme=$(readlink ~/.config/tmux/theme.conf)
|
|
|
|
|
|
|
|
if [[ $current_theme == *tmux-white.conf ]]; then
|
|
|
|
swww img -o DP-3 ~/pics/wallpapers/HOLY.png
|
|
|
|
swww img -o HDMI-A-1 ~/pics/wallpapers/okw\ tf.jpg
|
|
|
|
else
|
|
|
|
swww img -o DP-3 ~/pics/wallpapers/a\ carnival.jpg
|
|
|
|
swww img -o HDMI-A-1 ~/pics/wallpapers/the\ true\ old\ god.jpg
|
|
|
|
fi
|