Added draft for desk-copyq (untested)

This commit is contained in:
2025-07-19 17:02:25 +02:00
parent 45d9da3125
commit 1b9775ccb5
4 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
- name: Install CopyQ clipboard manager
community.general.pacman:
name:
- copyq
state: present
- name: Ensure autostart directory exists
file:
path: "{{ ansible_env.HOME }}/.config/autostart"
state: directory
mode: '0755'
become: false
- name: Add CopyQ to user autostart
copy:
dest: "{{ ansible_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