fixing and adding packages

This commit is contained in:
Matthew Stobbs
2025-01-18 16:00:26 -07:00
parent 333ee4c3f5
commit 985da518b4
114 changed files with 555 additions and 498 deletions

View File

@@ -1,17 +1,17 @@
---
- name: Build and install neovide
- name: build and install neovide
become: true
ansible.builtin.command:
cmd: cargo install --root /usr/local --git https://github.com/neovide/neovide
cmd: "cargo install --root {{ _neovide.install_prefix }} --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
dest: "{{ _neovide.install_prefix }}/share/icons/neovide.png"
- name: Copy neovide.desktop
become: true
ansible.builtin.copy:
ansible.builtin.templatefile:
src: neovide/neovide.desktop
dest: /usr/local/share/applications/neovide.desktop
dest: "{{ _neovide.install_prefix }}/share/applications/neovide.desktop"