I'm not using Ansible myself, but I do use kreadconfig and kwriteconfig, and well, it does just have 4 parameters to identify a setting and its value, so that Ansible module does look like it's sufficient for that.
One tip I have, is that you can figure out which GUI setting corresponds to which config file change, by setting up a Git repo in ~/.config and looking at the diff. So, basically:
cd ~/.config
git init
git add .
git commit -m "original config"
# now change setting in UI
git diff
When you're done transferring that into Ansible, you can commit or stage the changes and tweak another UI setting, or if you're completely done, then just rm ~/.config/.git/.
I guess, you could also use this Git repo to roll back all the settings and see if your Ansible automation works as expected.
Unfortunately, this will be a thin client so it’s gonna need to have predefined defaults. I could use skel, but I wanna be able to change settings for defaults and pre-existing profiles.
But I need to use Kubuntu as the software we primarily need to use it on supports 22.04 & 20.04.
I could use Neon, but I need to test to be sure I can mirror the repo with no problems, with means I may need to wait for Neon with 24.04, which may take a while.
5 Comments
Ephera@lemmy.ml · 6 pts · 2y
I'm not using Ansible myself, but I do use
kreadconfigandkwriteconfig, and well, it does just have 4 parameters to identify a setting and its value, so that Ansible module does look like it's sufficient for that.One tip I have, is that you can figure out which GUI setting corresponds to which config file change, by setting up a Git repo in
~/.configand looking at the diff. So, basically:When you're done transferring that into Ansible, you can commit or stage the changes and tweak another UI setting, or if you're completely done, then just
rm ~/.config/.git/.I guess, you could also use this Git repo to roll back all the settings and see if your Ansible automation works as expected.
YamiYuki@lemmy.kde.social · 1 pts · 2y
Unfortunately, this will be a thin client so it’s gonna need to have predefined defaults. I could use skel, but I wanna be able to change settings for defaults and pre-existing profiles.
boredsquirrel@slrpnk.net · 5 pts · 2y
Kubuntu still uses Plasma 5.27 which has a lot of issues.
Plasma 6 was rock stable, now 6.1 needs some fixing. I wonder when a more stable version comes.
YamiYuki@lemmy.kde.social · 1 pts · 2y
Probably 24.10
But I need to use Kubuntu as the software we primarily need to use it on supports 22.04 & 20.04.
I could use Neon, but I need to test to be sure I can mirror the repo with no problems, with means I may need to wait for Neon with 24.04, which may take a while.
boredsquirrel@slrpnk.net · 1 pts · 2y
There were Kubuntu Backports in the past, not sure about now.