Readme
This commit is contained in:
parent
a70db16a74
commit
a0c93da74d
12
README.md
12
README.md
|
@ -77,7 +77,7 @@ https://github.com/dylanaraps/fetch/wiki/Customizing-Info
|
||||||
- Displaying Images: `w3m`
|
- Displaying Images: `w3m`
|
||||||
- You may also need `w3m-img`
|
- You may also need `w3m-img`
|
||||||
- **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`
|
||||||
- More accurate window manager detection: `wmctrl`
|
- More accurate window manager detection: `wmctrl`
|
||||||
|
|
||||||
|
@ -183,9 +183,10 @@ alias fetch2="fetch \
|
||||||
--gtk3 on/off Enable/Disable gtk3 theme/icons output
|
--gtk3 on/off Enable/Disable gtk3 theme/icons output
|
||||||
|
|
||||||
Text Colors:
|
Text Colors:
|
||||||
--colors 1 2 3 4 5 Change the color of text
|
--colors 1 2 3 4 5 6 Change the color of text
|
||||||
(title, subtitle, colon, underline, info)
|
(title, @, subtitle, colon, underline, info)
|
||||||
--title_color num Change the color of the title
|
--title_color num Change the color of the title
|
||||||
|
--at_color num Change the color of "@" in title
|
||||||
--subtitle_color num Change the color of the subtitle
|
--subtitle_color num Change the color of the subtitle
|
||||||
--colon_color num Change the color of the colons
|
--colon_color num Change the color of the colons
|
||||||
--underline_color num Change the color of the underlines
|
--underline_color num Change the color of the underlines
|
||||||
|
@ -208,6 +209,7 @@ alias fetch2="fetch \
|
||||||
Image:
|
Image:
|
||||||
--image Image source. Where and what image we display.
|
--image Image source. Where and what image we display.
|
||||||
Possible values: wall, shuffle, /path/to/img, off
|
Possible values: wall, shuffle, /path/to/img, off
|
||||||
|
--image_backend Which program to use to draw images.
|
||||||
--shuffledir Which directory to shuffle for an image.
|
--shuffledir Which directory to shuffle for an image.
|
||||||
--font_width px Used to automatically size the image
|
--font_width px Used to automatically size the image
|
||||||
--image_position Where to display the image: (Left/Right)
|
--image_position Where to display the image: (Left/Right)
|
||||||
|
@ -222,8 +224,10 @@ alias fetch2="fetch \
|
||||||
|
|
||||||
--xoffset px How close the image will be
|
--xoffset px How close the image will be
|
||||||
to the left edge of the window
|
to the left edge of the window
|
||||||
|
NOTE: This only works with w3m
|
||||||
--yoffset px How close the image will be
|
--yoffset px How close the image will be
|
||||||
to the top edge of the window
|
to the top edge of the window
|
||||||
|
NOTE: This only works with w3m
|
||||||
--gap num Gap between image and text right side
|
--gap num Gap between image and text right side
|
||||||
to the top edge of the window
|
to the top edge of the window
|
||||||
NOTE: --gap can take a negative value which will
|
NOTE: --gap can take a negative value which will
|
||||||
|
@ -288,7 +292,7 @@ https://github.com/hut/ranger/issues/86#issuecomment-17346249
|
||||||
|
|
||||||
There are a few ways to fix this.
|
There are a few ways to fix this.
|
||||||
|
|
||||||
* Disable line wrapping with `$line_wrap off` in the script or with the launch flag `--line_wrap off`
|
* Disable line wrapping with `line_wrap=off` in the script or with the launch flag `--line_wrap off`
|
||||||
|
|
||||||
* The uptime and gtk info lines each have a shorthand option that makes their output smaller. You can <br \>
|
* The uptime and gtk info lines each have a shorthand option that makes their output smaller. You can <br \>
|
||||||
enable them by changing these variables or using these flags.
|
enable them by changing these variables or using these flags.
|
||||||
|
|
2
fetch
2
fetch
|
@ -1332,8 +1332,10 @@ usage () { cat << EOF
|
||||||
|
|
||||||
--xoffset px How close the image will be
|
--xoffset px How close the image will be
|
||||||
to the left edge of the window
|
to the left edge of the window
|
||||||
|
NOTE: This only works with w3m
|
||||||
--yoffset px How close the image will be
|
--yoffset px How close the image will be
|
||||||
to the top edge of the window
|
to the top edge of the window
|
||||||
|
NOTE: This only works with w3m
|
||||||
--gap num Gap between image and text right side
|
--gap num Gap between image and text right side
|
||||||
to the top edge of the window
|
to the top edge of the window
|
||||||
NOTE: --gap can take a negative value which will
|
NOTE: --gap can take a negative value which will
|
||||||
|
|
Reference in New Issue