6561ae5be5
- Tilføj custom_shortcuts: kitty Meta+Return, Firefox Meta+B, Spectacle Meta+Shift+S, System Settings Meta+I, Window Close Ctrl+W, Close Ctrl+Esc - Ret 1password toggle-genvej - Opret tasks/icons.yml med Kora installation og KDE tema-opsætning - Tilføj icons-task i site.yml før dotfiles
40 lines
938 B
YAML
40 lines
938 B
YAML
---
|
|
- name: Icons - opret icons-mappe
|
|
ansible.builtin.file:
|
|
path: ~/.local/share/icons
|
|
state: directory
|
|
mode: '0755'
|
|
become: false
|
|
|
|
- name: Icons - klon Kora repo
|
|
ansible.builtin.git:
|
|
repo: https://github.com/bikass/kora.git
|
|
dest: /tmp/kora-repo
|
|
depth: 1
|
|
become: false
|
|
|
|
- name: Icons - kopier Kora til icons-mappe
|
|
ansible.builtin.copy:
|
|
src: /tmp/kora-repo/kora/
|
|
dest: ~/.local/share/icons/kora/
|
|
remote_src: true
|
|
become: false
|
|
|
|
- name: Icons - opdater icon-cache
|
|
ansible.builtin.command:
|
|
cmd: gtk-update-icon-cache ~/.local/share/icons/kora
|
|
become: false
|
|
changed_when: false
|
|
|
|
- name: Icons - sæt Kora som standard KDE ikon-tema
|
|
ansible.builtin.command:
|
|
cmd: kwriteconfig6 --file kdeglobals --group Icons --key Theme kora
|
|
become: false
|
|
changed_when: false
|
|
|
|
- name: Icons - slet temp repo
|
|
ansible.builtin.file:
|
|
path: /tmp/kora-repo
|
|
state: absent
|
|
become: false
|