Check for linux console
This commit is contained in:
parent
4d6743b886
commit
08ecada71a
1 changed files with 2 additions and 1 deletions
3
neofetch
3
neofetch
|
@ -4806,7 +4806,8 @@ get_cols() {
|
||||||
done
|
done
|
||||||
|
|
||||||
# Workaround for bright background colors in the Linux framebuffer console.
|
# Workaround for bright background colors in the Linux framebuffer console.
|
||||||
(( block_range[1] < 16 )) && printf -v blocks2 '\e[5m%b\e[25m' "$blocks2"
|
(( block_range[1] < 16 )) && [[ "$TERM" == "linux" ]] &&
|
||||||
|
printf -v blocks2 '\e[5m%b\e[25m' "$blocks2"
|
||||||
|
|
||||||
# Convert height into spaces.
|
# Convert height into spaces.
|
||||||
printf -v block_spaces "%${block_height}s"
|
printf -v block_spaces "%${block_height}s"
|
||||||
|
|
Loading…
Reference in a new issue