parent
c6caf2ea25
commit
d548c48f4d
67
gnome-shell-enabled-extensions-background-logos.patch
Normal file
67
gnome-shell-enabled-extensions-background-logos.patch
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
From 1f8252470ce43dc8a0680871013e2f4492764302 Mon Sep 17 00:00:00 2001
|
||||||
|
From: rpm-build <rpm-build>
|
||||||
|
Date: Mon, 28 Feb 2022 10:27:09 -0500
|
||||||
|
Subject: [PATCH] data: Enable logo extension out of the box
|
||||||
|
|
||||||
|
Our brand team would like the logo extension to be used on new
|
||||||
|
installs.
|
||||||
|
|
||||||
|
This commit makes sure it gets enabled out of the box.
|
||||||
|
---
|
||||||
|
data/org.gnome.shell.gschema.xml.in | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/data/org.gnome.shell.gschema.xml.in b/data/org.gnome.shell.gschema.xml.in
|
||||||
|
index d5ea1e3..e3f440c 100644
|
||||||
|
--- a/data/org.gnome.shell.gschema.xml.in
|
||||||
|
+++ b/data/org.gnome.shell.gschema.xml.in
|
||||||
|
@@ -1,45 +1,45 @@
|
||||||
|
<schemalist>
|
||||||
|
<schema id="org.gnome.shell" path="/org/gnome/shell/"
|
||||||
|
gettext-domain="@GETTEXT_PACKAGE@">
|
||||||
|
<key name="development-tools" type="b">
|
||||||
|
<default>true</default>
|
||||||
|
<summary>
|
||||||
|
Enable internal tools useful for developers and testers from Alt-F2
|
||||||
|
</summary>
|
||||||
|
<description>
|
||||||
|
Allows access to internal debugging and monitoring tools
|
||||||
|
using the Alt-F2 dialog.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name="enabled-extensions" type="as">
|
||||||
|
- <default>[]</default>
|
||||||
|
+ <default>['background-logo@fedorahosted.org']</default>
|
||||||
|
<summary>UUIDs of extensions to enable</summary>
|
||||||
|
<description>
|
||||||
|
GNOME Shell extensions have a UUID property; this key lists extensions
|
||||||
|
which should be loaded. Any extension that wants to be loaded needs
|
||||||
|
to be in this list. You can also manipulate this list with the
|
||||||
|
EnableExtension and DisableExtension D-Bus methods on org.gnome.Shell.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name="disabled-extensions" type="as">
|
||||||
|
<default>[]</default>
|
||||||
|
<summary>UUIDs of extensions to force disabling</summary>
|
||||||
|
<description>
|
||||||
|
GNOME Shell extensions have a UUID property; this key lists extensions
|
||||||
|
which should be disabled, even if loaded as part of the current mode.
|
||||||
|
You can also manipulate this list with the EnableExtension and
|
||||||
|
DisableExtension D-Bus methods on org.gnome.Shell.
|
||||||
|
This key takes precedence over the “enabled-extensions” setting.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name="disable-user-extensions" type="b">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Disable user extensions</summary>
|
||||||
|
<description>
|
||||||
|
Disable all extensions the user has enabled without affecting
|
||||||
|
the “enabled-extension” setting.
|
||||||
|
</description>
|
||||||
|
</key>
|
||||||
|
<key name="disable-extension-version-validation" type="b">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Disables the validation of extension version compatibility</summary>
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
@ -2,17 +2,21 @@
|
|||||||
|
|
||||||
Name: gnome-shell
|
Name: gnome-shell
|
||||||
Version: 40.9
|
Version: 40.9
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Window management and application launching for GNOME
|
Summary: Window management and application launching for GNOME
|
||||||
|
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://wiki.gnome.org/Projects/GnomeShell
|
URL: https://wiki.gnome.org/Projects/GnomeShell
|
||||||
Source0: http://download.gnome.org/sources/gnome-shell/40/%{name}-%{tarball_version}.tar.xz
|
Source0: http://download.gnome.org/sources/gnome-shell/40/%{name}-%{tarball_version}.tar.xz
|
||||||
|
|
||||||
# Replace Epiphany with Firefox in the default favourite apps list
|
Recommends: gnome-shell-extension-background-logo
|
||||||
|
|
||||||
|
# Replace Epiphany with Firefox in the default favourite apps list, etc
|
||||||
|
# and enable background extension by default
|
||||||
Patch1: gnome-shell-favourite-apps-firefox.patch
|
Patch1: gnome-shell-favourite-apps-firefox.patch
|
||||||
Patch2: gnome-shell-favourite-apps-yelp.patch
|
Patch2: gnome-shell-favourite-apps-yelp.patch
|
||||||
Patch3: gnome-shell-favourite-apps-terminal.patch
|
Patch3: gnome-shell-favourite-apps-terminal.patch
|
||||||
|
Patch4: gnome-shell-enabled-extensions-background-logos.patch
|
||||||
|
|
||||||
# GDM/Lock stuff
|
# GDM/Lock stuff
|
||||||
Patch10: 0001-screenShield-unblank-when-inserting-smartcard.patch
|
Patch10: 0001-screenShield-unblank-when-inserting-smartcard.patch
|
||||||
@ -254,6 +258,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/evolution-calendar.de
|
|||||||
%{_mandir}/man1/gnome-shell.1*
|
%{_mandir}/man1/gnome-shell.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 28 2022 Ray Strode <rstrode@redhat.com> - 40.9-2
|
||||||
|
- Depend on and use background extension
|
||||||
|
Related: #2057150
|
||||||
|
|
||||||
* Tue Feb 22 2022 Florian Müllner <fmuellner@redhat.com> - 40.9-1
|
* Tue Feb 22 2022 Florian Müllner <fmuellner@redhat.com> - 40.9-1
|
||||||
- Update to 40.9
|
- Update to 40.9
|
||||||
Resolves: #2056411
|
Resolves: #2056411
|
||||||
|
Loading…
Reference in New Issue
Block a user