agsdotfilesdotshyprlandhyprland-configricerofirofi-configshell-scriptsswwwwallustwaybarwaybar-modulewaybar-themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
558 B
24 lines
558 B
#!/bin/bash |
|
|
|
DIR="$HOME/Pictures/wallpapers" |
|
SCRIPTSDIR="$HOME/.config/hypr/scripts" |
|
|
|
PICS=($(find ${DIR} -type f \( -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -o -name "*.gif" \))) |
|
RANDOMPICS=${PICS[ $RANDOM % ${#PICS[@]} ]} |
|
|
|
|
|
# Transition config |
|
FPS=60 |
|
TYPE="random" |
|
DURATION=1 |
|
BEZIER=".43,1.19,1,.4" |
|
SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION --transition-bezier $BEZIER" |
|
|
|
|
|
swww query || swww init && swww img ${RANDOMPICS} $SWWW_PARAMS |
|
|
|
|
|
${SCRIPTSDIR}/PywalSwww.sh |
|
sleep 1 |
|
${SCRIPTSDIR}/Refresh.sh |
|
|
|
|