mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 10:26:35 +00:00
Why: - Ansible 2.20+ deprecates INJECT_FACTS_AS_VARS and direct usage of top-level ansible_* facts. - This change updates all affected roles and vars files to the new supported syntax. - Ensures compatibility with upcoming Ansible 2.24 removal of implicit fact injection. Conversation reference: https://chatgpt.com/share/692f639b-1380-800f-9f18-732f7108e9e2
31 lines
820 B
YAML
31 lines
820 B
YAML
- name: Install CopyQ clipboard manager
|
||
community.general.pacman:
|
||
name: copyq
|
||
state: present
|
||
|
||
- name: Ensure autostart directory exists
|
||
file:
|
||
path: "{{ ansible_facts['env']['HOME'] }}/.config/autostart"
|
||
state: directory
|
||
mode: '0755'
|
||
become: false
|
||
|
||
- name: Add CopyQ to user autostart
|
||
copy:
|
||
dest: "{{ ansible_facts['env']['HOME'] }}/.config/autostart/copyq.desktop"
|
||
content: |
|
||
[Desktop Entry]
|
||
Type=Application
|
||
Exec=copyq
|
||
Hidden=false
|
||
NoDisplay=false
|
||
X-GNOME-Autostart-enabled=true
|
||
Name=CopyQ Clipboard Manager
|
||
Comment=Advanced clipboard manager with searchable and editable history
|
||
mode: '0644'
|
||
become: false
|
||
|
||
- name: Include CopyQ server systemd‑user service setup
|
||
import_tasks: server.yml
|
||
when: copyq_server_enabled | bool
|