configs/roles/config/tasks/plasma.yml
2024-10-16 08:36:12 +02:00

24 lines
1.1 KiB
YAML

---
- 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 Lockscreen wallpaper
ansible.builtin.shell: |
kwriteconfig6 --file ~/.config/kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.image --group General --key Image '{{ background_image }}'
kwriteconfig6 --file ~/.config/kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.image --group General --key PreviewImage '{{ background_image }}'
kwriteconfig6 --file ~/.config/kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.image --group General --key FillMode '1'
tags: config