mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-30 20:26:57 +00:00
Merge pull request #227 from dylanaraps/bar_changes
Made progress bars more customizable
This commit is contained in:
33
1.7.md
33
1.7.md
@@ -81,6 +81,7 @@ underline_enabled="on"
|
||||
|
||||
- Added KDE neon ascii art.
|
||||
|
||||
|
||||
### Colors
|
||||
|
||||
- Fixed bug with `--colors` not working with all 256 terminal colors.
|
||||
@@ -91,3 +92,35 @@ underline_enabled="on"
|
||||
would be white or black. This caused issues for those setting the foreground<br \>
|
||||
color to red or etc. This change adds a new value for `--colors` and `colors=()`<br \>
|
||||
called `fg` which will set the color to your foreground color.
|
||||
|
||||
|
||||
### Progress Bars
|
||||
|
||||
- You can now enable/disable a border around the progress bars.
|
||||
|
||||
```sh
|
||||
# $progress_border on
|
||||
[=====-----]
|
||||
|
||||
# $progress_border off
|
||||
=====-----
|
||||
```
|
||||
|
||||
- You can now individually set the progress bar characters. This means that you can<br \>
|
||||
have a seperate character for the elapsed and total portions of the bar.
|
||||
|
||||
```sh
|
||||
# Examples with $progress_border on
|
||||
|
||||
# Elapsed: =
|
||||
# Total: -
|
||||
[=====-----]
|
||||
|
||||
# Elapsed: .
|
||||
# Total: " "
|
||||
[..... ]
|
||||
|
||||
# Elapsed: /
|
||||
# Total: " "
|
||||
[///// ]
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user