mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-10 22:04:28 +00:00
docs: Set icon font to "Solid" style
This commit is contained in:
parent
c9305ddf33
commit
ce0872c9da
4 changed files with 5 additions and 4 deletions
|
@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
- Option to turn the clock on or off
|
||||
- Option to turn the power indicator on or off
|
||||
- Option to set the padding between the first/last item and the left/right edge of the display
|
||||
- Default to "Solid" style of Font Awesome 5 Free icon font
|
||||
|
||||
## [1.2.1](https://github.com/cmacrae/spacebar/releases/tag/v1.2.1) - 2020-11-18
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ spacebar -m config padding_right 20
|
|||
spacebar -m config spacing_left 25
|
||||
spacebar -m config spacing_right 15
|
||||
spacebar -m config text_font "Helvetica Neue:Bold:12.0"
|
||||
spacebar -m config icon_font "Font Awesome 5 Free:Regular:12.0"
|
||||
spacebar -m config icon_font "Font Awesome 5 Free:Solid:12.0"
|
||||
spacebar -m config background_color 0xff202020
|
||||
spacebar -m config foreground_color 0xffa8a8a8
|
||||
spacebar -m config space_icon_color 0xff458588
|
||||
|
@ -122,7 +122,7 @@ If you're using the `services.spacebar` module from [nix-darwin](https://github.
|
|||
spacing_left = 25;
|
||||
spacing_right = 15;
|
||||
text_font = ''"Helvetica Neue:Bold:12.0"'';
|
||||
icon_font = ''"Font Awesome 5 Free:Regular:12.0"'';
|
||||
icon_font = ''"Font Awesome 5 Free:Solid:12.0"'';
|
||||
background_color = "0xff202020";
|
||||
foreground_color = "0xffa8a8a8";
|
||||
space_icon_color = "0xff458588";
|
||||
|
|
|
@ -11,7 +11,7 @@ spacebar -m config padding_right 20
|
|||
spacebar -m config spacing_left 25
|
||||
spacebar -m config spacing_right 15
|
||||
spacebar -m config text_font "Helvetica Neue:Bold:12.0"
|
||||
spacebar -m config icon_font "Font Awesome 5 Free:Regular:12.0"
|
||||
spacebar -m config icon_font "Font Awesome 5 Free:Solid:12.0"
|
||||
spacebar -m config background_color 0xff202020
|
||||
spacebar -m config foreground_color 0xffa8a8a8
|
||||
spacebar -m config space_icon_color 0xff458588
|
||||
|
|
|
@ -398,7 +398,7 @@ void bar_manager_init(struct bar_manager *bar_manager)
|
|||
bar_manager_set_spacing_left(bar_manager, 25);
|
||||
bar_manager_set_spacing_right(bar_manager, 15);
|
||||
bar_manager_set_text_font(bar_manager, string_copy("Helvetica Neue:Regular:10.0"));
|
||||
bar_manager_set_icon_font(bar_manager, string_copy("Font Awesome 5 Free:Regular:10.0"));
|
||||
bar_manager_set_icon_font(bar_manager, string_copy("Font Awesome 5 Free:Solid:10.0"));
|
||||
bar_manager_set_background_color(bar_manager, 0xff202020);
|
||||
bar_manager_set_foreground_color(bar_manager, 0xffa8a8a8);
|
||||
bar_manager_set_space_icon_color(bar_manager, 0xffd75f5f);
|
||||
|
|
Loading…
Reference in a new issue