1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-04-19 00:03:47 +02:00

fix font configs

This commit is contained in:
eoli3n 2022-02-22 11:09:19 +01:00
parent 25ba07af50
commit c76e720f3e
4 changed files with 12 additions and 6 deletions

View File

@ -1,10 +1,10 @@
---
font: 'jetbrains mono'
font: jetbrains mono
font_size: 10
font_icon:
- 'FontAwesome5FreeRegular'
- 'FontAwesome5FreeSolid'
- 'FontAwesome5Brands'
- FontAwesome5FreeRegular
- FontAwesome5FreeSolid
- FontAwesome5Brands
gtk_theme: Adwaita-dark
icon_theme: Papirus-Dark
git_name: eoli3n

View File

@ -25,4 +25,7 @@ workspace $tag7 output $center
workspace $tag8 output $center
workspace $tag9 output $center
workspace $tag10 output $center
# syncthing
exec_always bash -c "pgrep -x syncthing || syncthing"
#INCLUDE####################################################

View File

@ -17,7 +17,7 @@
* {
border: none;
border-radius: 0;
font-family: "{{ font }}"{% for i in font_icon %}, "{{ i }}"{% endfor %};
font-family: "{{ font }}"{% for element in font_icon %}, "{{ element }}"{% endfor %};
font-size: 12px;
box-shadow: none;
text-shadow: none;

View File

@ -1,5 +1,8 @@
---
- name: set font awesome to 6 if archlinux
set_fact:
font_icon: '"FontAwesome6FreeRegular", "FontAwesome6FreeSolid", "FontAwesome6Brands"'
font_icon:
- FontAwesome6FreeRegular
- FontAwesome6FreeSolid
- FontAwesome6Brands
when: ansible_distribution == 'Archlinux'