You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 

29 lines
640 B

---
- name: Update apt cache
apt:
update_cache: yes
cache_valid_time: "{{ aptcachetime }}"
- name: Upgrade all apt packages
apt: upgrade=dist
- name: Add deb repository
apt_repository:
repo: ppa:papirus/papirus
state: present
update_cache: no
- name: Install Materia-KDE
apt:
name: "{{ item }}"
install_recommends: yes
state: latest
update_cache: yes
cache_valid_time: "{{ aptcachetime }}"
loop: [ 'materia-kde', 'papirus-icon-theme' ]
- name: Apply global theme
command: "lookandfeeltool -a com.github.varlesh.materia-dark"
become: true
become_user: "{{ ansible_env.USER }}"
...