Compare commits
3 commits
e6922c695b
...
7eecda7ccb
Author | SHA1 | Date | |
---|---|---|---|
7eecda7ccb | |||
b4386e70bb | |||
e843d27c81 |
4 changed files with 33 additions and 0 deletions
4
cleanup.yml
Normal file
4
cleanup.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Cleanup
|
||||
hosts: odhosts
|
||||
roles:
|
||||
- cleanup
|
|
@ -4,3 +4,4 @@
|
|||
- desktop
|
||||
- sway
|
||||
- waybar
|
||||
- themes
|
||||
|
|
12
roles/cleanup/tasks/main.yml
Normal file
12
roles/cleanup/tasks/main.yml
Normal 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
|
16
roles/themes/tasks/main.yml
Normal file
16
roles/themes/tasks/main.yml
Normal 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'"
|
Loading…
Reference in a new issue