This commit is contained in:
Dylan 2016-01-18 12:55:38 +11:00
parent 01d1f19d1d
commit 6b09927962
1 changed files with 17 additions and 12 deletions

View File

@ -42,26 +42,31 @@ about your system and prints it to the terminal next to an image of your choice!
## Dependencies ## Dependencies
These are the script's required dependencies #### Required dependencies:
- Bash **4.0+** - Bash **4.0+**
- For those of you on OS X not wanting to update bash, the script <br \>also works with zsh. All you have to do is change the shebang at <br \>the top to `#!/bin/zsh`. - For those of you on OS X not wanting to update bash, the script <br \>also works with zsh. All you have to do is change the shebang at <br \>the top to `#!/bin/zsh`.
- Text formatting, dynamic image size and padding: tput - Text formatting, dynamic image size and padding: `tput`
- Uptime detection: procps or procps-ng - Uptime detection: `procps` or `procps-ng`
These are the script's optional dependencies: #### Optional dependencies:
- Displaying Images: w3m All OS:
- You may also need w3m-img
- Image Cropping: ImageMagick - Displaying Images: `w3m`
- Display Wallpaper: feh - You may also need `w3m-img`
- Current Song: mpc - Image Cropping, Resizing etc: `ImageMagick`
- Resolution Detection: xorg-xdpyinfo - Current Song: `mpc`
- Window manager detection: wmctrl - Resolution Detection: `xorg-xdpyinfo`
- Window manager detection: `wmctrl`
- This is used as a fallback to parsing `.xinitrc` and `$XDG_CURRENT_DESKTOP`. - This is used as a fallback to parsing `.xinitrc` and `$XDG_CURRENT_DESKTOP`.
- Take a screenshot on script finish: scrot - Take a screenshot on script finish: `scrot`
- You can change this to another program with a `--scrotcmd` and an in script option. - You can change this to another program with a `--scrotcmd` and an in script option.
Linux:
- Display Wallpaper: `feh`
<!-- }}} --> <!-- }}} -->