diff options
| author | Ja.KooLit <jimmielovejay@gmail.com> | 2023-12-12 12:47:24 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-12 12:47:24 +0900 |
| commit | 26f128192ffe4362b9c1f675b90e62c3d4a2012f (patch) | |
| tree | 318cf6381b00a69302a44dcc72a19fa9afd6189f | |
| parent | f3333928f358275a36e2eb340284a7d0c2af7df2 (diff) | |
| parent | 2a59f460d9f169e40e7ff4639664d1a86b172ba6 (diff) | |
Merge pull request #61 from JaKooLit/development
correction and addition
| -rwxr-xr-x | config/hypr/scripts/Wallpaper.sh | 4 | ||||
| -rw-r--r-- | config/waybar/modules | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/config/hypr/scripts/Wallpaper.sh b/config/hypr/scripts/Wallpaper.sh index cd7dd83b..c203ce25 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 ef61f9c3..5115531a 100644 --- a/config/waybar/modules +++ b/config/waybar/modules @@ -346,12 +346,19 @@ "mpris": { "format": "{player_icon}", "format-paused": "{status_icon} <i>{dynamic}</i>", + "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, |
