Readme changes
This commit is contained in:
parent
f46aaf8672
commit
a70db16a74
|
@ -65,7 +65,6 @@ https://github.com/dylanaraps/fetch/wiki/Customizing-Info
|
||||||
**All OS:**
|
**All OS:**
|
||||||
|
|
||||||
- `Bash 4.0+`
|
- `Bash 4.0+`
|
||||||
- Text formatting, dynamic image size and padding: `tput`
|
|
||||||
|
|
||||||
**Linux / BSD / Windows:**
|
**Linux / BSD / Windows:**
|
||||||
|
|
||||||
|
@ -80,8 +79,7 @@ https://github.com/dylanaraps/fetch/wiki/Customizing-Info
|
||||||
- **Note:** The script can now also use iTerm2's builtin image rendering instead of w3m!
|
- **Note:** The script can now also use iTerm2's builtin image rendering instead of w3m!
|
||||||
- Enable it by changing `image_backend` to `iterm2` or by using the launch flag `--image_backend`.
|
- Enable it by changing `image_backend` to `iterm2` or by using the launch flag `--image_backend`.
|
||||||
- Image Cropping, Resizing etc: `ImageMagick`
|
- Image Cropping, Resizing etc: `ImageMagick`
|
||||||
- Window manager detection: `wmctrl`
|
- More accurate window manager detection: `wmctrl`
|
||||||
- This is used as a fallback to parsing `.xinitrc` and `$XDG_CURRENT_DESKTOP`.
|
|
||||||
|
|
||||||
**Linux / BSD:**
|
**Linux / BSD:**
|
||||||
|
|
||||||
|
|
4
fetch
4
fetch
|
@ -1436,10 +1436,8 @@ trap 'printf "\e[?25h"; clear; exit' 2
|
||||||
lines=$(tput lines)
|
lines=$(tput lines)
|
||||||
columns=$(tput cols)
|
columns=$(tput cols)
|
||||||
|
|
||||||
# Clear the terminal
|
# Clear the terminal and hide the cursor
|
||||||
clear
|
clear
|
||||||
|
|
||||||
# Hide the cursor
|
|
||||||
printf "\e[?25l"
|
printf "\e[?25l"
|
||||||
|
|
||||||
# Get image
|
# Get image
|
||||||
|
|
Reference in New Issue