diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-09-17 23:26:17 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-09-17 23:26:17 +0200 |
commit | fc744c530fd1444e4dc52a555649b83074311451 (patch) | |
tree | 524c0756af1941d1c2d684687d273128e5b9dc24 | |
parent | 4e2bee021439ebbfe1d0d1502fdf95ff4b7c4cf6 (diff) | |
download | drakx-kbd-mouse-x11-fc744c530fd1444e4dc52a555649b83074311451.tar drakx-kbd-mouse-x11-fc744c530fd1444e4dc52a555649b83074311451.tar.gz drakx-kbd-mouse-x11-fc744c530fd1444e4dc52a555649b83074311451.tar.bz2 drakx-kbd-mouse-x11-fc744c530fd1444e4dc52a555649b83074311451.tar.xz drakx-kbd-mouse-x11-fc744c530fd1444e4dc52a555649b83074311451.zip |
Change default background size to 1600x1200 to match mageia-theme
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/Xconfig/resolution_and_depth.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ - default theme backgrounds are now png instead of jpg, adapted symlink accordingly (default.png) (mga#19292) +- default background size is now 1600x1200, not 1024x768 Version 1.14 - 14 July 2016 diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm index fc008ce..0bfb1e9 100644 --- a/lib/Xconfig/resolution_and_depth.pm +++ b/lib/Xconfig/resolution_and_depth.pm @@ -254,7 +254,7 @@ sub set_default_background { my ($resolution) = @_; $resolution->{X} && $resolution->{Y} or do { - $resolution = { X => 1024, Y => 768 }; + $resolution = { X => 1600, Y => 1200 }; log::l("defaulting background resolution to $resolution->{X}x$resolution->{Y}"); }; |