This commit is contained in:
Pig Monkey 2023-10-15 19:00:38 -07:00
parent 8fabb426d5
commit e7ca988aa9
2 changed files with 11 additions and 0 deletions

View file

@ -93,6 +93,7 @@
- { role: signal, tags: ['signal'] }
- { role: android, tags: ['android'] }
- { role: ripgrep, tags: ['ripgrep'] }
- { role: bat, tags: ['bat'] }
- { role: zeal, tags: ['zeal'] }
- { role: kdeconnect, tags: ['kdeconnect'] }
- { role: oomd, tags: ['oomd'] }

10
roles/bat/tasks/main.yml Normal file
View file

@ -0,0 +1,10 @@
---
- name: Install bat
pacman:
name: bat
state: present
- name: Install bat-extras
pacman:
name: bat-extras
state: present