This commit is contained in:
Mike Wilson
2025-06-16 15:49:06 -04:00
parent 1867dd7b25
commit a8d7c643ca
4 changed files with 237 additions and 0 deletions

15
roles/mpv/tasks/main.yml Normal file
View File

@@ -0,0 +1,15 @@
- name: Install mpv
ansible.builtin.package:
name: mpv
state: present
become: true
- name: Install mpv.conf
ansible.builtin.copy:
src: mpv.conf
dest: "/home/{{ username }}/.config/mpv/mpv.conf"
- name: Install scripts
ansible.builtin.copy:
src: scripts
dest: "/home/{{ username }}/.config/mpv/"