Skip to content

Commit 77a0fd2

Browse files
committed
auto-sync: [Fri Mar 20 02:56:20 PM -03 2026]
1 parent 26865e4 commit 77a0fd2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

hypr/.config/hypr/hyprpaper.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ipc = off
55

66
wallpaper {
77
monitor = HDMI-A-1
8-
path = $HOME/.config/hypr/wallpapers/pics/street_with_signs_and_lights.png
8+
path = /home/runner/.config/hypr/wallpapers/pics/street_with_signs_and_lights.png
99
fit_mode = cover
1010
}
1111

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
#!/usr/bin/env bash
2-
# Refresh UI components (Kanshi and Waybar)
2+
# Refresh UI components (Kanshi, Waybar and Hyprpaper)
33
pkill -HUP kanshi >/dev/null 2>&1
44
pkill -9 -x waybar >/dev/null 2>&1
5+
pkill -9 -x hyprpaper >/dev/null 2>&1
56

67
# Restart Waybar if it exists
78
if command -v waybar >/dev/null 2>&1; then
89
waybar >/dev/null 2>&1 &
910
fi
11+
12+
# Restart Hyprpaper if it exists
13+
if command -v hyprpaper >/dev/null 2>&1; then
14+
hyprpaper >/dev/null 2>&1 &
15+
fi

0 commit comments

Comments
 (0)