2020-07-01 13:45:11 +02:00
|
|
|
---
|
2022-09-03 14:59:44 +02:00
|
|
|
- name: install necessary software
|
2020-07-01 13:45:11 +02:00
|
|
|
become: yes
|
2020-07-01 16:42:35 +02:00
|
|
|
apt:
|
|
|
|
update_cache: yes
|
|
|
|
pkg:
|
|
|
|
- i3lock
|
2020-07-01 16:45:35 +02:00
|
|
|
- dmenu
|
2020-07-02 15:19:15 +02:00
|
|
|
- feh
|
2020-07-06 10:05:37 +02:00
|
|
|
- dunst
|
2020-07-09 15:35:43 +02:00
|
|
|
- arandr
|
2023-04-24 03:21:51 +02:00
|
|
|
- fonts-font-awesome
|
2023-08-26 23:57:26 +02:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
|
|
|
- name: install necessary software
|
|
|
|
become: yes
|
|
|
|
community.general.pacman:
|
|
|
|
name:
|
|
|
|
- i3lock
|
|
|
|
- dmenu
|
|
|
|
- feh
|
|
|
|
- dunst
|
|
|
|
- arandr
|
|
|
|
- ttf-font-awesome
|
2023-10-24 09:18:24 +02:00
|
|
|
- xss-lock
|
2023-08-26 23:57:26 +02:00
|
|
|
when: ansible_distribution == "Archlinux"
|
2023-04-24 03:21:51 +02:00
|
|
|
|
2023-06-06 22:32:45 +02:00
|
|
|
- name: override dmenu_run
|
2023-06-06 22:57:58 +02:00
|
|
|
become: yes
|
2023-06-06 22:32:45 +02:00
|
|
|
copy:
|
|
|
|
src: usr/bin/dmenu_run
|
|
|
|
dest: /usr/bin/dmenu_run
|
|
|
|
mode: '0755'
|
|
|
|
|
2023-04-24 03:21:51 +02:00
|
|
|
- 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 14:59:44 +02:00
|
|
|
- xapp
|