extension-tool: Fix falling back to GSettings
When we switched the tool to the public Extensions service, the fallback to GSettings broke in the case GNOME is installed but not running (because the service can be autostarted, albeit it'll fail later). Fix this by also falling back when we don't get a response from gnome-shell. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6127 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2552>
This commit is contained in:
parent
e86a0b32c2
commit
007778880b
@ -25,6 +25,18 @@
|
||||
#include "common.h"
|
||||
#include "config.h"
|
||||
|
||||
static gboolean
|
||||
disable_extension_gsettings (const char *uuid)
|
||||
{
|
||||
g_autoptr(GSettings) settings = get_shell_settings ();
|
||||
|
||||
if (settings == NULL)
|
||||
return FALSE;
|
||||
|
||||
return settings_list_remove (settings, "enabled-extensions", uuid) &&
|
||||
settings_list_add (settings, "disabled-extensions", uuid);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
disable_extension_dbus (GDBusProxy *proxy,
|
||||
const char *uuid)
|
||||
@ -42,10 +54,7 @@ disable_extension_dbus (GDBusProxy *proxy,
|
||||
&error);
|
||||
|
||||
if (response == NULL)
|
||||
{
|
||||
g_printerr (_("Failed to connect to GNOME Shell\n"));
|
||||
return FALSE;
|
||||
}
|
||||
return disable_extension_gsettings (uuid);
|
||||
|
||||
g_variant_get (response, "(b)", &success);
|
||||
|
||||
@ -55,18 +64,6 @@ disable_extension_dbus (GDBusProxy *proxy,
|
||||
return success;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
disable_extension_gsettings (const char *uuid)
|
||||
{
|
||||
g_autoptr(GSettings) settings = get_shell_settings ();
|
||||
|
||||
if (settings == NULL)
|
||||
return FALSE;
|
||||
|
||||
return settings_list_remove (settings, "enabled-extensions", uuid) &&
|
||||
settings_list_add (settings, "disabled-extensions", uuid);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
disable_extension (const char *uuid)
|
||||
{
|
||||
|
@ -25,6 +25,18 @@
|
||||
#include "common.h"
|
||||
#include "config.h"
|
||||
|
||||
static gboolean
|
||||
enable_extension_gsettings (const char *uuid)
|
||||
{
|
||||
g_autoptr(GSettings) settings = get_shell_settings ();
|
||||
|
||||
if (settings == NULL)
|
||||
return FALSE;
|
||||
|
||||
return settings_list_add (settings, "enabled-extensions", uuid) &&
|
||||
settings_list_remove (settings, "disabled-extensions", uuid);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
enable_extension_dbus (GDBusProxy *proxy,
|
||||
const char *uuid)
|
||||
@ -42,10 +54,7 @@ enable_extension_dbus (GDBusProxy *proxy,
|
||||
&error);
|
||||
|
||||
if (response == NULL)
|
||||
{
|
||||
g_printerr (_("Failed to connect to GNOME Shell\n"));
|
||||
return FALSE;
|
||||
}
|
||||
return enable_extension_gsettings (uuid);
|
||||
|
||||
g_variant_get (response, "(b)", &success);
|
||||
|
||||
@ -55,18 +64,6 @@ enable_extension_dbus (GDBusProxy *proxy,
|
||||
return success;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
enable_extension_gsettings (const char *uuid)
|
||||
{
|
||||
g_autoptr(GSettings) settings = get_shell_settings ();
|
||||
|
||||
if (settings == NULL)
|
||||
return FALSE;
|
||||
|
||||
return settings_list_add (settings, "enabled-extensions", uuid) &&
|
||||
settings_list_remove (settings, "disabled-extensions", uuid);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
enable_extension (const char *uuid)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user