20 lines
275 B
YAML
20 lines
275 B
YAML
|
---
|
||
|
- name: installing tools
|
||
|
apt:
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
|
with_items:
|
||
|
- arandr
|
||
|
- atool
|
||
|
- bmon
|
||
|
- dnsutils
|
||
|
- libnotify-bin
|
||
|
- mtr-tiny
|
||
|
- ncdu
|
||
|
- pass
|
||
|
- redshift-gtk
|
||
|
- ripgrep
|
||
|
- rsync
|
||
|
- thunar
|
||
|
- xbacklight
|