2020-07-01 11:45:11 +00:00
|
|
|
---
|
2022-09-03 12:59:44 +00:00
|
|
|
- name: install necessary software
|
2020-07-01 11:45:11 +00:00
|
|
|
become: yes
|
2020-07-01 14:42:35 +00:00
|
|
|
apt:
|
|
|
|
update_cache: yes
|
|
|
|
pkg:
|
|
|
|
- i3lock
|
2020-07-01 14:45:35 +00:00
|
|
|
- dmenu
|
2020-07-02 13:19:15 +00:00
|
|
|
- feh
|
2020-07-06 08:05:37 +00:00
|
|
|
- dunst
|
2020-07-09 13:35:43 +00:00
|
|
|
- arandr
|
2023-04-24 01:21:51 +00:00
|
|
|
- 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:
|
2022-09-03 12:59:44 +00:00
|
|
|
- xapp
|