Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README config to be copy pasteable #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download the [latest release](https://github.com/ShimmerGlass/bar3x/releases/lat
Or, if you have the Golang toolchain installed :

```
go get github.com/ShimmerGlass/bar3x
go get github.com/shimmerglass/bar3x
```

### Building
Expand Down Expand Up @@ -49,16 +49,17 @@ Here is an example config :

```yaml

// colors configuration
bg_color: "#17191e" // bar background
text_color: "#d4e5f7" // general text
accent_color: "#1ebce8" // icons and UI elements such as bars
neutral_color: "#37393e" // background elements such as module separators and background graphs
neutral_light_color: "#90949d" // used for less important text such as units
# colors configuration
bg_color: "#17191e" # bar background
text_color: "#d4e5f7" # general text
accent_color: "#1ebce8" # icons and UI elements such as bars
neutral_color: "#37393e" # background elements such as module separators and background graphs
neutral_light_color: "#90949d" # used for less important text such as units

// modules can be placed on the left, center and right of the bar
# modules can be placed on the left, center and right of the bar
# choose the modules you want in each <ModuleRow>
bar_left: |
<ModuleRow> // choose the modules you want in each <ModuleRow>
<ModuleRow>
<Volume />
</ModuleRow>

Expand Down