feat: gtk theme configuration
This commit is contained in:
parent
e6922c695b
commit
e843d27c81
2 changed files with 16 additions and 0 deletions
|
@ -4,3 +4,4 @@
|
|||
- desktop
|
||||
- sway
|
||||
- waybar
|
||||
- themes
|
||||
|
|
15
roles/themes/tasks/main.yml
Normal file
15
roles/themes/tasks/main.yml
Normal 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'"
|
Loading…
Reference in a new issue