feat: opdater KDE genveje og tilføj Kora ikon-installation
- 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
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
- 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
|
||||
Reference in New Issue
Block a user