configs/roles/config/tasks/plasma.yml

24 lines
1.1 KiB
YAML
Raw Normal View History

---
2024-10-16 08:19:53 +02:00
- 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',
]
2024-10-16 08:36:12 +02:00
d.writeConfig('Image', '{{ background_image }}')
2024-10-16 08:16:15 +02:00
d.writeConfig('FillMode', '1')
d.reloadConfig()
})
"
2024-10-16 08:23:03 +02:00
tags: config
2024-10-16 08:19:53 +02:00
- 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 }}'
2024-10-16 08:16:15 +02:00
kwriteconfig6 --file ~/.config/kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.image --group General --key FillMode '1'
2024-10-16 08:23:03 +02:00
tags: config