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.
28 lines
808 B
28 lines
808 B
#!/bin/bash |
|
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## |
|
# Script for Random Wallpaper ( CTRL ALT W) |
|
|
|
wallDIR="$HOME/Pictures/wallpapers" |
|
scriptsDir="$HOME/.config/hypr/scripts" |
|
|
|
focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{print name}') |
|
|
|
PICS=($(find ${wallDIR} -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-daemon --format xrgb && swww img -o $focused_monitor ${RANDOMPICS} $SWWW_PARAMS |
|
|
|
|
|
${scriptsDir}/WallustSwww.sh |
|
sleep 1 |
|
${scriptsDir}/RefreshNoWaybar.sh |
|
|
|
|