dotfiles/tasks/autostart.yml
Jake Howard f9f49a44d4
All checks were successful
/ lint (push) Successful in 50s
Remove libinput-gestures
Not necessary on wayland for me, and in fact causes a number of odd permissions issues.
2024-09-18 14:40:33 +01:00

14 lines
391 B
YAML

- name: Create autostart directory
file:
path: "{{ home }}/.config/autostart"
state: directory
owner: "{{ user }}"
mode: 0755
- 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 }}"