dotfiles/tasks/autostart.yml
Jake Howard 24451d955c
Replace flameshot with spectacle
It works under wayland, and has a few other nice features
2024-03-14 21:23:14 +00:00

36 lines
881 B
YAML

- name: Create autostart directory
file:
path: "{{ home }}/.config/autostart"
state: directory
owner: "{{ user }}"
mode: 0755
- name: Autostart services
file:
src: /etc/xdg/autostart/{{ item }}.desktop
dest: "{{ home }}/.config/autostart/{{ item }}.desktop"
mode: 0644
owner: "{{ user }}"
state: link
force: true
loop:
- solaar
- name: Autostart applications
file:
src: /usr/share/applications/{{ item }}.desktop
dest: "{{ home }}/.config/autostart/{{ item }}.desktop"
mode: 0644
owner: "{{ user }}"
state: link
force: true
loop:
- libinput-gestures
- 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 }}"