Compare commits

...

3 commits

4 changed files with 33 additions and 0 deletions

4
cleanup.yml Normal file
View file

@ -0,0 +1,4 @@
- name: Cleanup
hosts: odhosts
roles:
- cleanup

View file

@ -4,3 +4,4 @@
- desktop - desktop
- sway - sway
- waybar - waybar
- themes

View file

@ -0,0 +1,12 @@
- name: Remove some qt apps
become: true
ansible.builtin.apt:
pkg:
- plasma-desktop
- plasma-discover
- plasma-workspace
- plasma-framework
- dolphin
- plasma-systemmonitor
state: absent
autoremove: yes

View file

@ -0,0 +1,16 @@
- name: Install python3-psutil to interact with dconf
become: true
ansible.builtin.apt:
name: python3-psutil
- name: Set gtk theme
community.general.dconf:
key: "/org/gnome/desktop/interface/gtk-theme"
value: "'Adwaita'"
- name: Set gtk icon theme
community.general.dconf:
key: "/org/gnome/desktop/interface/icon-theme"
value: "'Adwaita'"
- name: Enable dark mode
community.general.dconf:
key: /org/gnome/desktop/interface/color-scheme
value: "'prefer-dark'"