diff --git a/config/hypr/scripts/Wallpaper.sh b/config/hypr/scripts/Wallpaper.sh index cd7dd83..c203ce2 100755 --- a/config/hypr/scripts/Wallpaper.sh +++ b/config/hypr/scripts/Wallpaper.sh @@ -1,14 +1,14 @@ #!/bin/bash DIR="$HOME/Pictures/wallpapers/" -SCRIPTSDIR="$HOME/00-Shared-Drives/Common-nvme/common-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=30 +FPS=60 TYPE="random" DURATION=1 BEZIER=".43,1.19,1,.4" diff --git a/config/waybar/modules b/config/waybar/modules index ef61f9c..5115531 100644 --- a/config/waybar/modules +++ b/config/waybar/modules @@ -346,12 +346,19 @@ "mpris": { "format": "{player_icon}", "format-paused": "{status_icon} {dynamic}", + "on-click-middle": "playerctl play-pause", + "on-click": "playerctl previous", + "on-click-right": "playerctl next", + "scroll-step": 5.0, + "on-scroll-up": "~/.config/hypr/scripts/Volume.sh --inc", + "on-scroll-down": "~/.config/hypr/scripts/Volume.sh --dec", + "smooth-scrolling-threshold": 1, "player-icons": { "default": "▶", "mpv": "📻", }, "status-icons": { - "paused": "⏸" + "paused": "󰐎" }, // "ignored-players": ["firefox"] "max-length": 30,