diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-28 11:06:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-28 11:06:07 +0000 |
commit | 81ada61efdce88d52a7a1307274fdcc7ffd00922 (patch) | |
tree | 25bf42d3b9f0a202e1c35b1aa29c94ad36855305 | |
parent | 024a5f825fd49bafbee983884477e698383c2c3c (diff) | |
download | drakx-kbd-mouse-x11-81ada61efdce88d52a7a1307274fdcc7ffd00922.tar drakx-kbd-mouse-x11-81ada61efdce88d52a7a1307274fdcc7ffd00922.tar.gz drakx-kbd-mouse-x11-81ada61efdce88d52a7a1307274fdcc7ffd00922.tar.bz2 drakx-kbd-mouse-x11-81ada61efdce88d52a7a1307274fdcc7ffd00922.tar.xz drakx-kbd-mouse-x11-81ada61efdce88d52a7a1307274fdcc7ffd00922.zip |
- XFdrake:
o when setting background for the resolution, handle "hour"-based
backgrounds (also add Mandriva.xml symlink)
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | lib/Xconfig/resolution_and_depth.pm | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +- XFdrake: + o when setting background for the resolution, handle "hour"-based + backgrounds (also add Mandriva.xml symlink) + Version 0.47 - 27 February 2008 - XFdrake: diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm index 21af695..18afdef 100644 --- a/lib/Xconfig/resolution_and_depth.pm +++ b/lib/Xconfig/resolution_and_depth.pm @@ -275,6 +275,10 @@ sub set_default_background { my @wanted = grep { $best->[0] == $_->{X} && $best->[1] == $_->{Y} } @l; + if (-e "$dir/$theme{THEME}.xml") { + symlinkf "$theme{THEME}.xml", "$dir/Mandriva.xml"; + } + foreach (@wanted) { if ($_->{hour}) { symlinkf $_->{file}, "$dir/$theme{THEME}-$_->{hour}.png"; |