make the packages role more generic

This commit is contained in:
Matthew Stobbs
2025-01-18 09:24:11 -07:00
parent 3d466e64c7
commit 333ee4c3f5
112 changed files with 1610 additions and 3 deletions

17
tasks/Linux/neovide.yml Normal file
View File

@@ -0,0 +1,17 @@
---
- name: Build and install neovide
become: true
ansible.builtin.command:
cmd: cargo install --root /usr/local --git https://github.com/neovide/neovide
- name: Copy neovide icon
become: true
ansible.builtin.copy:
src: neovide/icon.png
dest: /usr/share/icons/neovide.png
- name: Copy neovide.desktop
become: true
ansible.builtin.copy:
src: neovide/neovide.desktop
dest: /usr/local/share/applications/neovide.desktop