This commit is contained in:
Stephan Raabe 2024-02-27 15:57:20 +01:00
parent 4c229fac9a
commit 6ef4bdae25
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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!"