feat: gtk theme configuration

This commit is contained in:
Ivan R. 2024-06-22 11:40:26 +05:00
parent e6922c695b
commit e843d27c81
Signed by: lumin
GPG key ID: 927D3132247BDE4E
2 changed files with 16 additions and 0 deletions

View file

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

View file

@ -0,0 +1,15 @@
- name: Install python3-psutil to interact with dconf
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'"