From fb3b82d33de4b1ff5e8e01634daee29a704d3d9f Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Sat, 11 Apr 2026 16:10:00 +0200 Subject: [PATCH] fix: match window title and executable name --- src/wallpaper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallpaper.c b/src/wallpaper.c index 54423a8..a1b433e 100644 --- a/src/wallpaper.c +++ b/src/wallpaper.c @@ -106,7 +106,7 @@ static Shader load_shader_from_file(const char *vs_path, const char *fs_path) { } static const char* get_window_title() { - return getenv("DEBUG") != NULL ? "pihkaal-wallpaper-debug" : "pihkaal-wallpaper"; + return getenv("DEBUG") != NULL ? "pkl-wallpaper-debug" : "pkl-wallpaper"; } static char* get_hyprland_socket_path() {