diff --git a/.config/hypr/configs/binds.conf b/.config/hypr/configs/binds.conf index 8c1e5262..150adb72 100644 --- a/.config/hypr/configs/binds.conf +++ b/.config/hypr/configs/binds.conf @@ -26,7 +26,7 @@ bind = SUPERSHIFT, BACKSPACE, exec, ~/.config/hypr/scripts/custom_app_launch cod bind = SUPER, 23, exec, rofi -show drun # Tab bind = SUPER, INSERT, exec, ~/.config/hypr/scripts/color_picker bind = SUPERSHIFT, W, exec, ~/.config/hypr/scripts/wallpaper select -bind = SUPERCTRL, W, exec, ~/.config/hypr/scripts/wallpaper random +bind = SUPERCTRL, W, exec, pypr wall next bind = SUPER, 61, exec, ~/.config/hypr/scripts/rofi/keybindings # / bind = SUPERSHIFT, G, exec, ~/.config/hypr/scripts/rofi/game_launcher bind = SUPER, Y, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy diff --git a/.config/hypr/pyprland.toml b/.config/hypr/pyprland.toml index a029d173..5e607c88 100644 --- a/.config/hypr/pyprland.toml +++ b/.config/hypr/pyprland.toml @@ -1,5 +1,5 @@ [pyprland] -plugins = ["scratchpads", "expose", "magnify"] +plugins = ["scratchpads", "expose", "magnify", "wallpapers"] [scratchpads.volume] command = "pavucontrol" @@ -51,7 +51,7 @@ lazy = true [wallpapers] path = "/home/matt/.config/hypr/themes/luna/walls/" -interval = 60 # change every hour -command = "swww img --transition-bezier 0.5,1.19,.8,.4 --transition-type wipe --transition-duration 2 --transition-fps 75" +interval = 60 # change every hour +command = "swww img --transition-bezier 0.5,1.19,.8,.4 --transition-type wipe --transition-duration 2 --transition-fps 75 \"[file]\" && notify-send 'Wallpaper Changed' -i \"[file]\"" clear_command = "swww clear" extensions = ["jpg", "png", "gif", "jpeg"] diff --git a/.config/hypr/scripts/autostart/services b/.config/hypr/scripts/autostart/services index cf8c0580..34b4c3b8 100755 --- a/.config/hypr/scripts/autostart/services +++ b/.config/hypr/scripts/autostart/services @@ -9,7 +9,6 @@ udiskie & # Wallpaper Backend swww init -"$scripts"/wallpaper random & # Bar waybar & diff --git a/.config/systemd/user/change_wallpaper.service b/.config/systemd/user/change_wallpaper.service deleted file mode 100644 index ec515e52..00000000 --- a/.config/systemd/user/change_wallpaper.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Change wallpaper with swww as backend - -[Service] -Type=simple -ExecStart=/home/matt/.config/hypr/scripts/wallpaper random - -[Install] -WantedBy=default.target diff --git a/.config/systemd/user/change_wallpaper.timer b/.config/systemd/user/change_wallpaper.timer deleted file mode 100644 index 2f5627e8..00000000 --- a/.config/systemd/user/change_wallpaper.timer +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Timer to change the wallpaper each 1 hours - -[Timer] -OnCalendar=0/1:00:00 -Unit=change_wallpaper.service - -[Install] -WantedBy=timers.target