1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-22 15:01:59 +01: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

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

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

@ -17,7 +17,7 @@
* { * {
border: none; border: none;
border-radius: 0; 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; font-size: 12px;
box-shadow: none; box-shadow: none;
text-shadow: none; text-shadow: none;

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