Files
dotfiles/ansible/tasks/workstations/autostart.yml
2025-09-23 13:20:00 +00:00

7 lines
257 B
YAML

# Mark all files under the real autostart source as executable
- name: Mark all files under dotfiles autostart as executable
ansible.builtin.file:
path: "{{ lookup('env', 'DOTFILES_PATH') }}/config/autostart"
mode: "u+x,g+x,o+x"
recurse: true