From b7eaaf172fc48d7a85afd29f64b5fdcc1bbe309f Mon Sep 17 00:00:00 2001 From: Donald Williams <129223418+dwilliam62@users.noreply.github.com> Date: Mon, 13 Oct 2025 22:17:33 -0400 Subject: Update UserKeybinds.conf Fix typo in bindings for Show open apps --- config/hypr/UserConfigs/UserKeybinds.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index 4d35a9c9..338bf0d1 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -29,7 +29,7 @@ bind = $mainMod, H, exec, $scriptsDir/KeyHints.sh # help / cheat sheet bind = $mainMod ALT, R, exec, $scriptsDir/Refresh.sh # Refresh waybar, swaync, rofi bind = $mainMod ALT, E, exec, $scriptsDir/RofiEmoji.sh # emoji menu bind = $mainMod, S, exec, $scriptsDir/RofiSearch.sh # Google search using rofi -bind = $mainMod SHIFT, S, exec, rofi -show windows # list/switch apps using rofi +bind = $mainMod CTRL, S, exec, rofi -show window # list/switch apps using rofi bind = $mainMod ALT, O, exec, $scriptsDir/ChangeBlur.sh # Toggle blur settings bind = $mainMod SHIFT, G, exec, $scriptsDir/GameMode.sh # Toggle animations ON/OFF bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwindle Layout -- cgit v1.2.3 From 03c731d66b1a60af08dee231ac17911d42e3c0fa Mon Sep 17 00:00:00 2001 From: mio-dokuhaki Date: Wed, 15 Oct 2025 14:19:23 +0900 Subject: hotfix: Update WallustSwww.sh (Changed wallpaper_path) --- config/hypr/scripts/WallustSwww.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/hypr/scripts/WallustSwww.sh b/config/hypr/scripts/WallustSwww.sh index 5a0bc491..5e0148ee 100755 --- a/config/hypr/scripts/WallustSwww.sh +++ b/config/hypr/scripts/WallustSwww.sh @@ -39,7 +39,8 @@ else if [[ -f "$cache_file" ]]; then # The first non-filter line is the original wallpaper path - wallpaper_path="$(grep -v 'Lanczos3' "$cache_file" | head -n 1)" + # wallpaper_path="$(grep -v 'Lanczos3' "$cache_file" | head -n 1)" + wallpaper_path=$(swww query | grep $current_monitor | awk '{print $9}') fi fi -- cgit v1.2.3 From cc241fe956ffa234f8c9d8fd76221912904d85bd Mon Sep 17 00:00:00 2001 From: mio-dokuhaki Date: Thu, 16 Oct 2025 19:22:18 +0900 Subject: hotfix: Update GameMode.sh to switch several times properly --- config/hypr/scripts/GameMode.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/config/hypr/scripts/GameMode.sh b/config/hypr/scripts/GameMode.sh index 04b337ed..7a39da3d 100755 --- a/config/hypr/scripts/GameMode.sh +++ b/config/hypr/scripts/GameMode.sh @@ -26,6 +26,7 @@ else sleep 0.1 ${SCRIPTSDIR}/WallustSwww.sh sleep 0.5 + hyprctl reload ${SCRIPTSDIR}/Refresh.sh notify-send -e -u normal -i "$notif" " Gamemode:" " disabled" exit -- cgit v1.2.3