mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-24 03:15:45 +00:00
Update shortcut to launch desktop settings in KDE 6.3.90
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
9a9fe25b96
commit
e65c23b6f2
17
lib/utils.pm
17
lib/utils.pm
@ -1657,11 +1657,18 @@ sub solidify_wallpaper {
|
|||||||
# once to make this work
|
# once to make this work
|
||||||
# https://bugs.kde.org/show_bug.cgi?id=487715
|
# https://bugs.kde.org/show_bug.cgi?id=487715
|
||||||
mouse_click;
|
mouse_click;
|
||||||
# Run the Desktop settings
|
# Run the Desktop settings. shortcut changed from alt-d, alt-s
|
||||||
hold_key 'alt';
|
# to ctrl-shift-d in 6.3.90, use release number as proxy
|
||||||
send_key 'd';
|
my $relnum = get_release_number;
|
||||||
send_key 's';
|
if ($relnum > 42) {
|
||||||
release_key 'alt';
|
send_key 'ctrl-shift-d';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hold_key 'alt';
|
||||||
|
send_key 'd';
|
||||||
|
send_key 's';
|
||||||
|
release_key 'alt';
|
||||||
|
}
|
||||||
# give the window a few seconds to stabilize
|
# give the window a few seconds to stabilize
|
||||||
wait_still_screen 3;
|
wait_still_screen 3;
|
||||||
# Select type of background
|
# Select type of background
|
||||||
|
Loading…
Reference in New Issue
Block a user