Remove the xorg .desktop file sessions, and also the separate -wayland desktop file since we will only have a single Session now that will be a Wayland session. Mirror of the changes in gnome-session [1] [1]: https://gitlab.gnome.org/GNOME/gnome-session/-/merge_requests/98 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/283>
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
# SPDX-FileCopyrightText: 2017 Florian Müllner <fmuellner@gnome.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
option('extension_set',
|
|
type: 'combo',
|
|
choices: ['classic', 'default', 'all'],
|
|
value: 'default',
|
|
description: 'Predefined sets of extensions'
|
|
)
|
|
|
|
option('enable_extensions',
|
|
type: 'array',
|
|
value: [],
|
|
description: 'Comma separated list of extensions to enable instead of a predefined set.'
|
|
)
|
|
|
|
option('classic_mode',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable installing data files for classic mode.'
|
|
)
|