Line wrap is now disabled by default
This commit is contained in:
parent
dbc8c6cc1e
commit
aff2e634c4
3 changed files with 3 additions and 2 deletions
1
1.6.md
1
1.6.md
|
@ -24,6 +24,7 @@ the color white, it's now based on your foreground color.
|
||||||
- Progress bars are now by default colored based on your distro's logo colors.
|
- Progress bars are now by default colored based on your distro's logo colors.
|
||||||
- Use `stty` instead of `read -s` to fix an issue with escape sequences<br \>
|
- Use `stty` instead of `read -s` to fix an issue with escape sequences<br \>
|
||||||
appearing in the output.
|
appearing in the output.
|
||||||
|
- Line wrap is now disabled by default.
|
||||||
|
|
||||||
### Packages
|
### Packages
|
||||||
|
|
||||||
|
|
|
@ -221,7 +221,7 @@ colors=(distro)
|
||||||
|
|
||||||
# Toggle line wrapping
|
# Toggle line wrapping
|
||||||
# --line_wrap on/off
|
# --line_wrap on/off
|
||||||
line_wrap="on"
|
line_wrap="off"
|
||||||
|
|
||||||
# Toggle bold text
|
# Toggle bold text
|
||||||
# --bold on/off
|
# --bold on/off
|
||||||
|
|
2
neofetch
2
neofetch
|
@ -243,7 +243,7 @@ colors=(distro)
|
||||||
|
|
||||||
# Toggle line wrapping
|
# Toggle line wrapping
|
||||||
# --line_wrap on/off
|
# --line_wrap on/off
|
||||||
line_wrap="on"
|
line_wrap="off"
|
||||||
|
|
||||||
# Toggle bold text
|
# Toggle bold text
|
||||||
# --bold on/off
|
# --bold on/off
|
||||||
|
|
Loading…
Reference in a new issue