From 0adfd281950d1ba90735aae14180e54f50704e76 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 30 Nov 2023 10:34:53 +0900 Subject: rofi power and v2.1.12 bump --- config/hypr/v2.1.11 | 5 ----- config/hypr/v2.1.12 | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 config/hypr/v2.1.11 create mode 100644 config/hypr/v2.1.12 (limited to 'config/hypr') diff --git a/config/hypr/v2.1.11 b/config/hypr/v2.1.11 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.1.11 +++ /dev/null @@ -1,5 +0,0 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/Hyprland-Dots -## This is to have a reference of which version would be - -## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/v2.1.12 b/config/hypr/v2.1.12 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.1.12 @@ -0,0 +1,5 @@ +### https://github.com/JaKooLit ### +## https://github.com/JaKooLit/Hyprland-Dots +## This is to have a reference of which version would be + +## note that this will always be higher than the released versions \ No newline at end of file -- cgit v1.2.3 From 00faa20da0bf96c863b14ab367c2a09fe52ed14e Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 30 Nov 2023 11:55:05 +0900 Subject: updated Keybinds.conf and Wallpaper.sh --- config/hypr/configs/Keybinds.conf | 2 +- config/hypr/scripts/Wallpaper.sh | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'config/hypr') diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 26a32f55..baec5115 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -38,7 +38,7 @@ bind = $mainMod, E, exec, $scriptsDir/QuickEdit.sh bind = $mainMod, B, exec, killall -SIGUSR1 waybar # Toggle hide/show waybar bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh bind = CTRL SHIFT, W, exec, $scriptsDir/Refresh.sh -bind = CTRL ALT, W, exec, $scriptsDir/Wallpaper.sh swww +bind = CTRL ALT, W, exec, $scriptsDir/Wallpaper.sh bind = CTRL, W, exec, $scriptsDir/WaybarStyles.sh bind = $mainMod, W, exec, $scriptsDir/WallpaperSelect.sh bind = ALT, W, exec, $scriptsDir/WaybarLayout.sh diff --git a/config/hypr/scripts/Wallpaper.sh b/config/hypr/scripts/Wallpaper.sh index 8fdfcbb1..c494dca1 100755 --- a/config/hypr/scripts/Wallpaper.sh +++ b/config/hypr/scripts/Wallpaper.sh @@ -6,11 +6,18 @@ 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[@]} ]} -swww query || swww init -swww img ${RANDOMPICS} --transition-fps 30 --transition-type any --transition-duration 3 +# Transition config +FPS=30 +TYPE="any" +DURATION=3 +SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION" + + +swww query || swww init && swww img ${RANDOMPICS} $SWWW_PARAMS ${SCRIPTSDIR}/PywalSwww.sh & sleep 1 ${SCRIPTSDIR}/Refresh.sh + -- cgit v1.2.3 From f9f437f20a69f3fc8031f0b0ae9deaf6fc91e59f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 30 Nov 2023 14:25:10 +0900 Subject: updated Wallpaper random script --- config/hypr/scripts/WallpaperRandom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hypr') diff --git a/config/hypr/scripts/WallpaperRandom.sh b/config/hypr/scripts/WallpaperRandom.sh index e0f8ee7d..aafcf2ae 100755 --- a/config/hypr/scripts/WallpaperRandom.sh +++ b/config/hypr/scripts/WallpaperRandom.sh @@ -29,7 +29,7 @@ while true; do done \ | sort -n | cut -d':' -f2- \ | while read -r img; do - swww img "$img" & $pywal_script & $pywal_refresh + swww img "$img" && $pywal_script & $pywal_refresh sleep $INTERVAL done -- cgit v1.2.3