Added rgb support for msi keyboard

This commit is contained in:
Kevin Veen-Birkenbach 2022-08-18 19:23:43 +02:00
parent aeab52ddd8
commit b02b07445e
4 changed files with 21 additions and 1 deletions

View File

@ -12,11 +12,16 @@
become: true
roles:
- native-gnome
- name: setup msi rgb keyboard
hosts: msi_perkeyrgb_hosts
become: true
roles:
- native-msi-perkeyrgb
- name: setup ssh hosts
hosts: ssh_hosts
become: false
roles:
- native-ssh
- native-msi-perkeyrgb
- name: setup swapfile hosts
hosts: swapfile_hosts
become: false

View File

@ -0,0 +1,4 @@
# native-msi-gs66
# further information
- https://github.com/Askannz/msi-perkeyrgb
- https://wiki.archlinux.org/title/MSI_GS66_11UX

View File

@ -0,0 +1,2 @@
dependencies:
- native-aur-helper

View File

@ -0,0 +1,9 @@
- name: Install MSI packages
kewlfft.aur.aur:
use: yay
name:
- msi-perkeyrgb
- name: Change preset of keyboard {{vendor_and_product_id}} to {{preset}}
ansible.builtin.shell: sudo msi-perkeyrgb --model GS65 -p "{{preset}}" --id "{{vendor_and_product_id}}"
become: true