feat(custom): Add riverwm and fonts
This commit is contained in:
parent
6aa2188f50
commit
05fd2e1324
1 changed files with 31 additions and 0 deletions
|
@ -11,6 +11,29 @@
|
||||||
state: present
|
state: present
|
||||||
notify: installed-keyd
|
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:
|
handlers:
|
||||||
- name: Activate keyd service
|
- name: Activate keyd service
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
|
@ -20,3 +43,11 @@
|
||||||
state: link
|
state: link
|
||||||
with_items: [ keyd ]
|
with_items: [ keyd ]
|
||||||
listen: installed-keyd
|
listen: installed-keyd
|
||||||
|
|
||||||
|
- name: Regenerate fontconfig
|
||||||
|
ansible.builtin.command:
|
||||||
|
argv:
|
||||||
|
- xbps-reconfigure
|
||||||
|
- --force
|
||||||
|
- fontconfig
|
||||||
|
listen: installed-fonts
|
||||||
|
|
Loading…
Reference in a new issue