feat: tilføj font-installation og fjern LibreWolf

- Opret tasks/fonts.yml — downloader JetBrainsMono Nerd Font v3.4.0
  og installerer til ~/.local/share/fonts/j/
- Tilføj fonts-task i site.yml før dotfiles så Kitty-config er klar
- Fjern LibreWolf repo fra tasks/repos.yml og fedora-kde-setup.md
This commit is contained in:
2026-05-22 21:06:46 +02:00
parent 2fafb26ba1
commit fac3a70af0
4 changed files with 35 additions and 8 deletions
+34
View File
@@ -0,0 +1,34 @@
---
- name: Fonts - opret fontmappe
ansible.builtin.file:
path: ~/.local/share/fonts/j
state: directory
mode: '0755'
become: false
- name: Fonts - download JetBrainsMono Nerd Font
ansible.builtin.get_url:
url: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/JetBrainsMono.zip
dest: /tmp/JetBrainsMono.zip
mode: '0644'
become: false
- name: Fonts - udpak JetBrainsMono
ansible.builtin.unarchive:
src: /tmp/JetBrainsMono.zip
dest: ~/.local/share/fonts/j/
remote_src: true
creates: ~/.local/share/fonts/j/JetBrainsMonoNerdFont_Regular.ttf
become: false
- name: Fonts - slet zip-fil
ansible.builtin.file:
path: /tmp/JetBrainsMono.zip
state: absent
become: false
- name: Fonts - opdater font-cache
ansible.builtin.command:
cmd: fc-cache -f
become: false
changed_when: false
-7
View File
@@ -28,13 +28,6 @@
args:
creates: /etc/yum.repos.d/sublime-text.repo
# LibreWolf
- name: LibreWolf - repo
ansible.builtin.command:
cmd: dnf config-manager addrepo --from-repofile=https://repo.librewolf.net/librewolf.repo
args:
creates: /etc/yum.repos.d/librewolf.repo
# Jottacloud
- name: Jottacloud - repo
ansible.builtin.yum_repository: