From 05fd2e1324a5752ef4b361c4af2c95648475a3a9 Mon Sep 17 00:00:00 2001 From: Marty Oehme <marty.oehme@gmail.com> Date: Fri, 21 Feb 2025 17:39:02 +0100 Subject: [PATCH] feat(custom): Add riverwm and fonts --- void_custom.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/void_custom.yaml b/void_custom.yaml index f3ad205..32675d5 100644 --- a/void_custom.yaml +++ b/void_custom.yaml @@ -11,6 +11,29 @@ state: present notify: installed-keyd + - name: Install river wm + community.general.xbps: + name: + - river + - waybar + state: present + + - name: Install many fonts + community.general.xbps: + name: + - nerd-fonts-otf + - noto-fonts-ttf + - noto-fonts-cjk + state: present + notify: installed-fonts + + # - name: Install much stuff + # community.general.xbps: + # name: + # - + # state: present + # notify: installed-fonts + handlers: - name: Activate keyd service ansible.builtin.file: @@ -20,3 +43,11 @@ state: link with_items: [ keyd ] listen: installed-keyd + + - name: Regenerate fontconfig + ansible.builtin.command: + argv: + - xbps-reconfigure + - --force + - fontconfig + listen: installed-fonts