feat(ubuntu): finished up ubuntu desktop setup

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-01-24 08:55:45 +01:00
parent 7aab3a2801
commit e3da94c6a5
28 changed files with 328 additions and 208 deletions

View File

@@ -0,0 +1,15 @@
- name: Download ripgrep deb
ansible.builtin.get_url:
url: https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep_14.1.0-1_{{ aarch }}.deb
dest: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
- name: Install ripgrep
ansible.builtin.apt:
deb: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
state: present
become: true
- name: Remove ripgrep deb
ansible.builtin.file:
path: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
state: absent