From f88ac0e92e4dd06856486fa966e2096f5f7d23a4 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Mon, 10 Apr 2023 19:01:17 +0200 Subject: [PATCH] added xorg xinit installation --- playbook.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/playbook.yml b/playbook.yml index fb236c2..700364c 100644 --- a/playbook.yml +++ b/playbook.yml @@ -3,6 +3,16 @@ hosts: localhost connection: local tasks: + - name: Install rsync (file synchronizer) + become: true + pacman: + name: rsync + state: present + - name: Install Xinit (Xorg startup script) + become: true + pacman: + name: xorg-xinit + state: present - name: Install Tokei (line of code counter) become: true pacman: