Use kwriteconfig instead of plasma scripting
This commit is contained in:
parent
9868408bd7
commit
55c104f320
@ -1,17 +1,24 @@
|
|||||||
---
|
---
|
||||||
|
# - name: Plasma | Set desktop wallpaper
|
||||||
|
# ansible.builtin.shell: |
|
||||||
|
# qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript "
|
||||||
|
# desktops().forEach((d) => {
|
||||||
|
# d.currentConfigGroup = [
|
||||||
|
# 'Wallpaper',
|
||||||
|
# 'org.kde.image',
|
||||||
|
# 'General',
|
||||||
|
# ]
|
||||||
|
# d.writeConfig('Image', '{{ background_image }}')
|
||||||
|
# d.writeConfig('FillMode', '1')
|
||||||
|
# d.reloadConfig()
|
||||||
|
# })
|
||||||
|
# "
|
||||||
|
# tags: config
|
||||||
|
|
||||||
- name: Plasma | Set desktop wallpaper
|
- name: Plasma | Set desktop wallpaper
|
||||||
ansible.builtin.shell: |
|
ansible.builtin.shell: |
|
||||||
qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript "
|
kwriteconfig6 --file ~/.config/plasma-org.kde.plasma.desktop-appletsrc --group Containments --group 1 --group Wallpaper --group org.kde.image --group General --key Image '{{ background_image }}'
|
||||||
desktops().forEach((d) => {
|
kwriteconfig6 --file ~/.config/plasma-org.kde.plasma.desktop-appletsrc --group Containments --group 2 --group Wallpaper --group org.kde.image --group General --key Image '{{ background_image }}'
|
||||||
d.currentConfigGroup = [
|
|
||||||
'Wallpaper',
|
|
||||||
'org.kde.image',
|
|
||||||
'General',
|
|
||||||
]
|
|
||||||
d.writeConfig('Image', '{{ background_image }}')
|
|
||||||
d.reloadConfig()
|
|
||||||
})
|
|
||||||
"
|
|
||||||
tags: config
|
tags: config
|
||||||
|
|
||||||
- name: Plasma | Set Lockscreen wallpaper
|
- name: Plasma | Set Lockscreen wallpaper
|
||||||
|
Loading…
Reference in New Issue
Block a user