Commit 81337b5a authored by Dylan's avatar Dylan

xoffset now also moves the text

parent 8094dd9c
...@@ -24,6 +24,10 @@ to customize where or if the progress bar will appear. ...@@ -24,6 +24,10 @@ to customize where or if the progress bar will appear.
- Added support for `SteamOS`. - Added support for `SteamOS`.
### Images
- Using `xoffset` now also moves the text over.
### Packages ### Packages
- Neofetch is now packaged for `Fedora` and `Fedora` based distros. Thanks **[@konimex](https://github.com/konimex)**. - Neofetch is now packaged for `Fedora` and `Fedora` based distros. Thanks **[@konimex](https://github.com/konimex)**.
......
...@@ -1942,7 +1942,7 @@ getimage () { ...@@ -1942,7 +1942,7 @@ getimage () {
case "$image_position" in case "$image_position" in
"left") "left")
# Padding is half the terminal width + gap # Padding is half the terminal width + gap
padding="\033[$((image_size / font_width + gap))C" padding="\033[$((image_size / font_width + gap + xoffset/font_width))C"
;; ;;
"right") "right")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment