1
0
Fork 0
gnome-shell/js/misc/config.js.in
Daniel Baumann 1fcdbd5df9
Adding upstream version 48.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 20:26:11 +02:00

25 lines
1,004 B
JavaScript

const pkg = imports.package;
/* The name of this package (not localized) */
export const PACKAGE_NAME = '@PACKAGE_NAME@';
/* The version of this package */
export const PACKAGE_VERSION = '@PACKAGE_VERSION@';
/* 1 if networkmanager is available, 0 otherwise */
export const HAVE_NETWORKMANAGER = @HAVE_NETWORKMANAGER@;
/* 1 if portal helper is enabled, 0 otherwise */
export const HAVE_PORTAL_HELPER = @HAVE_PORTAL_HELPER@;
/* gettext package */
export const GETTEXT_PACKAGE = '@GETTEXT_PACKAGE@';
/* locale dir */
export const LOCALEDIR = '@datadir@/locale';
/* other standard directories */
export const LIBEXECDIR = '@libexecdir@';
export const PKGDATADIR = '@datadir@/@PACKAGE_NAME@';
/* g-i package versions */
export const LIBMUTTER_API_VERSION = '@LIBMUTTER_API_VERSION@';
export const HAVE_BLUETOOTH = pkg.checkSymbol('GnomeBluetooth', '3.0',
'Client.default_adapter_state');
export const UTILITIES_FOLDER_APPS = @UTILS_FOLDER_APPS@;
export const SYSTEM_FOLDER_APPS = @SYSTEM_FOLDER_APPS@;