Enable autorandr services

This commit is contained in:
petRUShka 2023-03-02 00:42:06 +03:00 committed by GitHub
parent 8e3cf85323
commit e8b473510a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,3 +3,20 @@
pacman: name=autorandr state=present
tags:
- autorandr
- name: Enable autorandr.service to ensure it starts after wake from suspend
ansible.builtin.systemd:
name: autorandr
enabled: true
daemon_reload: true
tags:
- autorandr
- name: Enable autorandr-lid-listener.service to ensure it starts after closing/opening lid
ansible.builtin.systemd:
name: autorandr-lid-listener.service
enabled: true
state: started
daemon_reload: true
tags:
- autorandr