diff --git a/lib/wp/wp.c b/lib/wp/wp.c index b13858d9..eda3a7d0 100644 --- a/lib/wp/wp.c +++ b/lib/wp/wp.c @@ -186,7 +186,7 @@ lookup_dirs (guint flags) else { if (flags & WP_LOOKUP_DIR_XDG_CONFIG_HOME) { dir = g_get_user_config_dir (); - g_ptr_array_add (dirs, g_build_filename (dir, "wireplumber", NULL)); + g_ptr_array_add (dirs, g_build_filename (dir, "pipewire", NULL)); } if (flags & WP_LOOKUP_DIR_ETC) g_ptr_array_add (dirs, diff --git a/meson.build b/meson.build index 927a1ad5..faac2d1e 100644 --- a/meson.build +++ b/meson.build @@ -15,8 +15,8 @@ wireplumber_headers_dir = get_option('includedir') / 'wireplumber-' + wireplumbe wireplumber_bin_dir = get_option('prefix') / get_option('bindir') wireplumber_module_dir = get_option('prefix') / get_option('libdir') / 'wireplumber-' + wireplumber_api_version -wireplumber_data_dir = get_option('prefix') / get_option('datadir') / 'wireplumber' -wireplumber_config_dir = get_option('prefix') / get_option('sysconfdir') / 'wireplumber' +wireplumber_data_dir = get_option('prefix') / get_option('datadir') / 'pipewire' +wireplumber_config_dir = get_option('prefix') / get_option('sysconfdir') / 'pipewire' wireplumber_locale_dir = get_option('prefix') / get_option('localedir') cc = meson.get_compiler('c')