From e7ca988aa929eb7286164150eaf04ef4570a5a79 Mon Sep 17 00:00:00 2001 From: Pig Monkey Date: Sun, 15 Oct 2023 19:00:38 -0700 Subject: [PATCH] add bat --- playbook.yml | 1 + roles/bat/tasks/main.yml | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 roles/bat/tasks/main.yml diff --git a/playbook.yml b/playbook.yml index a7e628b..dad0778 100644 --- a/playbook.yml +++ b/playbook.yml @@ -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'] } diff --git a/roles/bat/tasks/main.yml b/roles/bat/tasks/main.yml new file mode 100644 index 0000000..6e2cf00 --- /dev/null +++ b/roles/bat/tasks/main.yml @@ -0,0 +1,10 @@ +--- +- name: Install bat + pacman: + name: bat + state: present + +- name: Install bat-extras + pacman: + name: bat-extras + state: present