[gnome-shell/wip/hadess/welcome-tour] main: Show welcome tour dialogue on first start
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/hadess/welcome-tour] main: Show welcome tour dialogue on first start
- Date: Wed, 3 Feb 2021 11:10:11 +0000 (UTC)
commit bf6d001cfb822b09e7446059deaa366631d1be46
Author: Bastien Nocera <hadess hadess net>
Date: Mon Feb 1 13:31:41 2021 +0100
main: Show welcome tour dialogue on first start
This hooks the recently added welcome tour dialogue to be shown the
first time a new session is started, and disabled after that.
Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3632
data/org.gnome.shell.gschema.xml.in | 8 ++++++++
js/ui/main.js | 11 +++++++++++
2 files changed, 19 insertions(+)
---
diff --git a/data/org.gnome.shell.gschema.xml.in b/data/org.gnome.shell.gschema.xml.in
index 0ae047e188..94527dfd0d 100644
--- a/data/org.gnome.shell.gschema.xml.in
+++ b/data/org.gnome.shell.gschema.xml.in
@@ -94,6 +94,14 @@
adapter is ever seen not to have devices associated to it.
</description>
</key>
+ <key name="show-welcome-tour" type="b">
+ <default>true</default>
+ <summary>Whether to show the “Welcome to GNOME” dialogue on startup</summary>
+ <description>
+ This key determines whether we show the “Welcome to GNOME” dialog on startup.
+ This key will be set to false when the dialogue has been shown once.
+ </description>
+ </key>
<key name="introspect" type="b">
<default>false</default>
<summary>Enable introspection API</summary>
diff --git a/js/ui/main.js b/js/ui/main.js
index f488279d07..dfb545d127 100644
--- a/js/ui/main.js
+++ b/js/ui/main.js
@@ -50,6 +50,7 @@ const ParentalControlsManager = imports.misc.parentalControlsManager;
const A11Y_SCHEMA = 'org.gnome.desktop.a11y.keyboard';
const STICKY_KEYS_ENABLE = 'stickykeys-enable';
+const SHOW_WELCOME_TOUR = 'show-welcome-tour';
const LOG_DOMAIN = 'GNOME Shell';
const GNOMESHELL_STARTED_MESSAGE_ID = 'f3ea493c22934e26811cd62abe8e203a';
@@ -297,6 +298,9 @@ function _initializeUI() {
if (credentials.get_unix_user() === 0) {
notify(_('Logged in as a privileged user'),
_('Running a session as a privileged user should be avoided for security reasons. If
possible, you should log in as a normal user.'));
+ } else if (sessionMode.currentMode !== 'gdm' &&
+ sessionMode.currentMode !== 'initial-setup') {
+ _handleShowWelcomeScreen();
}
if (sessionMode.currentMode !== 'gdm' &&
@@ -314,6 +318,13 @@ function _initializeUI() {
});
}
+function _handleShowWelcomeScreen() {
+ if (global.settings.get_boolean(SHOW_WELCOME_TOUR)) {
+ openWelcomeDialog();
+ global.settings.set_boolean(SHOW_WELCOME_TOUR, false);
+ }
+}
+
async function _handleLockScreenWarning() {
const path = '%s/lock-warning-shown'.format(global.userdatadir);
const file = Gio.File.new_for_path(path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]