29 lines
564 B
YAML
29 lines
564 B
YAML
---
|
|
- name: install necessary software
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- i3lock
|
|
- dmenu
|
|
- feh
|
|
- dunst
|
|
- arandr
|
|
- fonts-font-awesome
|
|
|
|
- name: install necessary software
|
|
when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "23.04"
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- libxapp1
|
|
|
|
- name: install necessary software
|
|
when: ansible_distribution == "Ubuntu" and ansible_distribution_version != "23.04"
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- xapp
|