13 lines
255 B
YAML
13 lines
255 B
YAML
|
- 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
|