dotfiles/tasks/autostart.yml

15 lines
391 B
YAML
Raw Normal View History

- name: Create autostart directory
2019-05-27 16:48:44 +01:00
file:
path: "{{ home }}/.config/autostart"
2019-05-27 16:48:44 +01:00
state: directory
owner: "{{ user }}"
mode: 0755
2023-01-08 15:26:35 +00:00
- name: Autostart solaar
get_url:
url: https://raw.githubusercontent.com/pwr-Solaar/Solaar/master/share/autostart/solaar.desktop
dest: "{{ home }}/.config/autostart/solaar.desktop"
mode: 0755
force: true
owner: "{{ user }}"