feat: add uninstall target and rename executable

This commit is contained in:
2026-04-11 14:38:49 +02:00
parent 6bd8d48846
commit a1a6ba4c34
3 changed files with 16 additions and 12 deletions

View File

@@ -82,7 +82,7 @@ static Vector2 hyprland_get_cursor_position() {
static const char *resolve_asset_path(const char *path) {
if (FileExists(path)) return path;
const char *system_path = TextFormat("/usr/share/wallpaper/%s", path);
const char *system_path = TextFormat("/usr/local/share/pkl-wallpaper/%s", path);
if (FileExists(system_path)) return system_path;
return path;
}