Regenerated
@@ -2000,6 +2000,11 @@ bind = CTRL ALT, B, exec, flatpak run eu.betterbird.Betterbird
|
||||
bind = CTRL ALT, S, exec, spotify
|
||||
bind = $mainMod, Z, exec, zeditor
|
||||
bind = $mainMod, W, exec, zen
|
||||
|
||||
#########################
|
||||
# Auto apps
|
||||
#########################
|
||||
bind = , workspace, exec, ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||
#+END_SRC
|
||||
|
||||
** =.config/hypr/exec-once.conf=
|
||||
@@ -2011,7 +2016,8 @@ exec-once = hyprpolkitagent
|
||||
exec-once = systemd-run --user --scope --unit=elephant elephant
|
||||
exec-once = waybar
|
||||
exec-once = awww-daemon & awww img -o eDP-1 ~/Wallpapers/pictures/01.jpg
|
||||
exec-once = sh ~/Wallpapers/scripts/wallpaper.sh &
|
||||
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
||||
#+END_SRC
|
||||
|
||||
** =.config/hypr/hypridle.conf=
|
||||
@@ -2050,7 +2056,6 @@ source = ./window-rules.conf
|
||||
source = ./workspace-rules.conf
|
||||
|
||||
|
||||
exec-once = /nix/store/c9cnbxhxbagj7gfpc1g5hl4x4f8dzayv-dbus-1.16.2/bin/dbus-update-activation-environment --systemd DISPLAY HYPRLAND_INSTANCE_SIGNATURE WAYLAND_DISPLAY XDG_CURRENT_DESKTOP XDG_SESSION_TYPE && systemctl --user stop hyprland-session.target && systemctl --user start hyprland-session.target
|
||||
decoration {
|
||||
shadow {
|
||||
color=rgba(1e1e2e99)
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Get active workspace ID
|
||||
ws=$(hyprctl activeworkspace -j | jq -r '.id')
|
||||
|
||||
# Format number with leading zero (01, 02, ...)
|
||||
num=$(printf "%02d" "$ws")
|
||||
|
||||
# Build wallpaper path
|
||||
wall="$HOME/Wallpapers/pictures/${num}.jpg"
|
||||
|
||||
# Check if file exists
|
||||
if [ -f "$wall" ]; then
|
||||
# Set wallpaper (hyprpaper)
|
||||
hyprctl hyprpaper unload all
|
||||
hyprctl hyprpaper preload "$wall"
|
||||
hyprctl hyprpaper wallpaper ",$wall"
|
||||
fi
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
socket="$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock"
|
||||
|
||||
socat -U - UNIX-CONNECT:$socket | while read -r line; do
|
||||
if [[ "$line" == workspace* ]]; then
|
||||
~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||
fi
|
||||
done
|
||||
|
Before Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 290 KiB |
|
Before Width: | Height: | Size: 306 KiB |
|
Before Width: | Height: | Size: 391 KiB |
|
Before Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 382 KiB |
|
Before Width: | Height: | Size: 224 KiB |
|
Before Width: | Height: | Size: 221 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 112 KiB |
@@ -1 +0,0 @@
|
||||
/nix/store/hqg1qv89c89x5z6hyafbbyc0ncy0jbqs-home-manager-files/nixos_conf/wallpaperstuff/videos/dark_water_large.mp4
|
||||
@@ -1 +0,0 @@
|
||||
/nix/store/9cznk9vc494karcb2pq7sccallv76m82-home-manager-files/nixos_conf/wallpaperstuff/videos/white_blobs_small.mp4
|
||||
@@ -1 +0,0 @@
|
||||
/nix/store/hqg1qv89c89x5z6hyafbbyc0ncy0jbqs-home-manager-files/nixos_conf/wallpaperstuff/videos/white_blobs_small.mp4
|
||||
@@ -152,3 +152,8 @@ bind = CTRL ALT, B, exec, flatpak run eu.betterbird.Betterbird
|
||||
bind = CTRL ALT, S, exec, spotify
|
||||
bind = $mainMod, Z, exec, zeditor
|
||||
bind = $mainMod, W, exec, zen
|
||||
|
||||
#########################
|
||||
# Auto apps
|
||||
#########################
|
||||
bind = , workspace, exec, ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||
|
||||
@@ -4,4 +4,5 @@ exec-once = hyprpolkitagent
|
||||
exec-once = systemd-run --user --scope --unit=elephant elephant
|
||||
exec-once = waybar
|
||||
exec-once = awww-daemon & awww img -o eDP-1 ~/Wallpapers/pictures/01.jpg
|
||||
exec-once = sh ~/Wallpapers/scripts/wallpaper.sh &
|
||||
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
||||
|
||||
@@ -10,7 +10,6 @@ source = ./window-rules.conf
|
||||
source = ./workspace-rules.conf
|
||||
|
||||
|
||||
exec-once = /nix/store/c9cnbxhxbagj7gfpc1g5hl4x4f8dzayv-dbus-1.16.2/bin/dbus-update-activation-environment --systemd DISPLAY HYPRLAND_INSTANCE_SIGNATURE WAYLAND_DISPLAY XDG_CURRENT_DESKTOP XDG_SESSION_TYPE && systemctl --user stop hyprland-session.target && systemctl --user start hyprland-session.target
|
||||
decoration {
|
||||
shadow {
|
||||
color=rgba(1e1e2e99)
|
||||
|
||||