2020-09-11 08:20:01 +00:00
|
|
|
Index: gnome-shell-3.34.5/js/ui/unlockDialog.js
|
2019-11-01 08:55:47 +00:00
|
|
|
===================================================================
|
2020-09-11 08:20:01 +00:00
|
|
|
--- gnome-shell-3.34.5.orig/js/ui/unlockDialog.js
|
|
|
|
+++ gnome-shell-3.34.5/js/ui/unlockDialog.js
|
|
|
|
@@ -23,6 +23,10 @@ var UnlockDialog = GObject.registerClass
|
2019-11-01 08:55:47 +00:00
|
|
|
visible: false,
|
|
|
|
});
|
2017-06-20 16:51:00 +00:00
|
|
|
|
2020-09-11 08:20:01 +00:00
|
|
|
+ let path = '/usr/share/gnome-shell/theme/SLE-background.png';
|
|
|
|
+ if (GLib.file_test(path, GLib.FileTest.EXISTS))
|
|
|
|
+ this.style = 'background: url(' + path + ')';
|
|
|
|
+
|
2019-11-01 08:55:47 +00:00
|
|
|
this.add_constraint(new Layout.MonitorConstraint({ primary: true }));
|
|
|
|
parentActor.add_child(this);
|
2017-06-20 16:51:00 +00:00
|
|
|
|