ansible-desktop/roles/laptop/tasks/supergfxctl.yml

16 lines
341 B
YAML
Raw Normal View History

2023-08-26 21:57:26 +00:00
- import_tasks: supergfxctl-build.yml
when: ansible_distribution == "Ubuntu"
2023-04-24 02:04:17 +00:00
- name: install supergfxctl
2023-08-26 21:57:26 +00:00
shell:
cmd:
yay -S --needed --noconfirm supergfxctl
when: ansible_distribution == "Archlinux"
2023-09-22 17:57:57 +00:00
- name: Enable supergfxctl
become: yes
ansible.builtin.systemd:
2023-10-23 22:19:45 +00:00
name: supergfxd
2023-09-22 17:57:57 +00:00
state: started
enabled: yes