nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 22 lines 901 B view raw
1diff --git a/src/Widgets/BackgroundImage.vala b/src/Widgets/BackgroundImage.vala 2index ae9431c..f0f2a49 100644 3--- a/src/Widgets/BackgroundImage.vala 4+++ b/src/Widgets/BackgroundImage.vala 5@@ -9,7 +9,7 @@ public class Greeter.BackgroundImage : Gtk.EventBox { 6 7 public BackgroundImage (string? path) { 8 if (path == null) { 9- path = "/usr/share/backgrounds/elementaryos-default"; 10+ path = "@default_wallpaper@"; 11 } 12 13 try { 14@@ -19,7 +19,7 @@ public class Greeter.BackgroundImage : Gtk.EventBox { 15 critical ("Fallback to default wallpaper"); 16 17 try { 18- full_pixbuf = new Gdk.Pixbuf.from_file ("/usr/share/backgrounds/elementaryos-default"); 19+ full_pixbuf = new Gdk.Pixbuf.from_file ("@default_wallpaper@"); 20 } catch (GLib.Error e) { 21 critical (e.message); 22 }