From 6ef4bdae2591d37ba9b4567f250bfffa4cf924c7 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Tue, 27 Feb 2024 15:57:20 +0100 Subject: [PATCH] Updates --- hypr/conf/keybindings/default.conf | 1 + hypr/scripts/wallpaper.sh | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/hypr/conf/keybindings/default.conf b/hypr/conf/keybindings/default.conf index eb770ba..a426480 100644 --- a/hypr/conf/keybindings/default.conf +++ b/hypr/conf/keybindings/default.conf @@ -28,6 +28,7 @@ bind = $mainMod SHIFT, right, resizeactive, 100 0 bind = $mainMod SHIFT, left, resizeactive, -100 0 bind = $mainMod SHIFT, up, resizeactive, 0 -100 bind = $mainMod SHIFT, down, resizeactive, 0 100 +bind = $mainMod, G, togglegroup # Actions bind = $mainMod, PRINT, exec, ~/dotfiles/hypr/scripts/screenshot.sh diff --git a/hypr/scripts/wallpaper.sh b/hypr/scripts/wallpaper.sh index c7dcb3f..efae3ab 100755 --- a/hypr/scripts/wallpaper.sh +++ b/hypr/scripts/wallpaper.sh @@ -98,7 +98,12 @@ swww img $wallpaper \ # ----------------------------------------------------- # Send notification # ----------------------------------------------------- -sleep 1 -notify-send "Colors and Wallpaper updated" "with image $newwall" + +if [ "$1" == "init" ] ;then + echo ":: Init" +else + sleep 1 + notify-send "Colors and Wallpaper updated" "with image $newwall" +fi echo "DONE!"