Files
dotfiles/config/ansible/tasks/workstations/autostart.yml
Menno van Leeuwen 0c186365cd
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 28s
Nix Format Check / check-format (push) Failing after 1m26s
Python Lint Check / check-python (push) Failing after 19s
feat: enhance autostart configurations and add executable permissions for desktop entries
2025-05-20 21:06:49 +02: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