added hotkeys role
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
---
|
||||
- name: Copy cheat sheet desktop file
|
||||
ansible.builtin.template:
|
||||
src: cheat-sheet.desktop.j2
|
||||
dest: "{{ ansible_user_home }}/.local/share/applications/net.local.cheat-sheet.sh.desktop"
|
||||
mode: "0644"
|
||||
|
||||
- name: Copy password script
|
||||
ansible.builtin.template:
|
||||
src: pass-menu.desktop.j2
|
||||
dest: "{{ ansible_user_home }}/.local/share/applications/net.local.pass-menu.sh.desktop"
|
||||
mode: "0644"
|
||||
|
||||
- name: Set cheat-sheet hotkey
|
||||
community.general.ini_file:
|
||||
path: "{{ ansible_user_home }}/.config/kglobalshortcutsrc"
|
||||
section: "services][net.local.cheat-sheet.sh.desktop"
|
||||
option: _launch
|
||||
value: Alt+C
|
||||
mode: "0644"
|
||||
|
||||
- name: Set pass-menu hotkey
|
||||
community.general.ini_file:
|
||||
path: "{{ ansible_user_home }}/.config/kglobalshortcutsrc"
|
||||
section: "services][net.local.pass-menu.sh.desktop"
|
||||
option: _launch
|
||||
value: Alt+P
|
||||
mode: "0644"
|
||||
Reference in New Issue
Block a user