ansible-desktop/roles/laptop/tasks/supergfxctl.yml
Przemysław Grondek 5087cbca6d Update laptop tasks
2023-09-22 19:57:57 +02:00

16 lines
343 B
YAML

- import_tasks: supergfxctl-build.yml
when: ansible_distribution == "Ubuntu"
- name: install supergfxctl
shell:
cmd:
yay -S --needed --noconfirm supergfxctl
when: ansible_distribution == "Archlinux"
- name: Enable supergfxctl
become: yes
ansible.builtin.systemd:
name: supergfxctl
state: started
enabled: yes