Merge master branch into hp-ux
This commit is contained in:
commit
53148c1ffe
27 changed files with 988 additions and 634 deletions
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
|
@ -7,6 +7,8 @@ If you're suggesting a new feature then just a description will suffice.
|
|||
|
||||
## Screenshot
|
||||
|
||||
## Config file
|
||||
|
||||
## Verbose log
|
||||
|
||||
1. Run `neofetch -vv 2> neofetchlog`
|
||||
|
|
|
@ -17,7 +17,7 @@ before_install:
|
|||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
||||
|
||||
script:
|
||||
- time ./neofetch --ascii --config travis -v
|
||||
- time ./neofetch --ascii --config config/travis.conf -v
|
||||
# See this wiki page for why we're disabling these errors.
|
||||
# https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
|
||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010; fi
|
||||
|
|
238
CHANGELOG.md
238
CHANGELOG.md
|
@ -1,246 +1,22 @@
|
|||
From the 2.0 release but it applies here too:
|
||||
|
||||
> Some of the config options/arguments were renamed/changed and Neofetch will warn you on run if you're using deprecated options (`neofetch -v`). For this release I recommend using this release with a fresh config file so that you can make use of the new documentation.
|
||||
|
||||
> I say this every release; This changelog is incomplete, for a full list of changes take a look through the commit history. Neofetch now has an unspoken commit style so reading the commit history won't hurt as much as it used to.
|
||||
|
||||
Thanks to everyone who contributed this release, there were a lot of new faces this time around. :)
|
||||
|
||||
|
||||
## Contributors
|
||||
|
||||
- **[@konimex](https://github.com/konimex)**
|
||||
- **[@iandrewt](https://github.com/iandrewt)**
|
||||
- **[@jorgegonzalez](https://github.com/jorgegonzalez)**
|
||||
- **[@z33ky](https://github.com/z33ky)**
|
||||
- **[@mstraube](https://github.com/mstraube)**
|
||||
- **[@gavinhungry](https://github.com/gavinhungry)**
|
||||
|
||||
## IRC
|
||||
|
||||
Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any questions, issues or ideas feel free to join the irc channel and I'll be happy to assist you. I know that we've already got the gitter chat but hopefully this makes things easier for those without a github account. :)
|
||||
|
||||
[![Freenode](https://img.shields.io/badge/%23neofetch-%20on%20Freenode-brightgreen.svg)](http://irc.lc/freenode/neofetch)
|
||||
|
||||
|
||||
## OS
|
||||
|
||||
- Added support for AIX.
|
||||
- Added support for AntiX.
|
||||
- Added support for GNU/kFreeBSD.
|
||||
- Added support for Gentoo FreeBSD.
|
||||
- Added support for GrombyangOS.
|
||||
- Added support for Joyent SmartOS.
|
||||
- Added support for Mer.
|
||||
- Added support for MINIX.
|
||||
- Added support for MX.
|
||||
- Added support for Open Source Media Center (OSMC).
|
||||
- Added support for SalentOS.
|
||||
- Added support for TrueOS.
|
||||
- Added support for Windows (MSYS2).
|
||||
|
||||
|
||||
## General
|
||||
|
||||
- The config file is now installed to `/etc/neofetch/config` and acts as a system-wide config file for neofetch. Editing this file will make the changes available to all users on the system. Those packaging Neofetch **without** using the Makefile will need to make changes to support this.
|
||||
- Travis now runs [shellcheck](https://github.com/koalaman/shellcheck) on every commit and pull request.
|
||||
- We've had to exclude around 10 lint errors, see this wiki page for why we did this:
|
||||
- https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
|
||||
- Neofetch now supports relative path values when specifying the location to images, ascii files and config files.
|
||||
- For example, `neofetch --w3m Pictures/Wallpapers/10.jpg` and `neofetch --w3m 10.jpg` now work.
|
||||
- Optimize usage of get_de(), get_wm() and get_term().
|
||||
- We were calling these multiple times, we now check to see if they were run previously.
|
||||
- Optimize info caching, only check for cache files in scripts that use caching.
|
||||
- Cleanup `main()`.
|
||||
- Renamed `old_flags()` --> `old_options()`.
|
||||
- The manpage is now generated using `help2man`. `help2man` parses the output of `--help` and `--version` to create a manpage. This ensures that our manpage stays 1:1 with the script documentation. We actually found a lot of outdated info in the old manpage thanks to this.
|
||||
- A new flag was added called `--gen-man` which generates a neofetch manpage in your current directory.
|
||||
- Delete most of `info()` and instead call `prin()`.
|
||||
- This removes a lot of duplicate code between `info()` and `prin()`.
|
||||
- Remove `printf` subshells and instead use `printf -v` to declare the variables.
|
||||
- Set fixed `$PATH` in the beginning of the script.
|
||||
- Fixed artifacts when using line-breaks in TTYs.
|
||||
- Removed executable permission from config files. BASH can source them even if they're un-executable.
|
||||
- All errors are now sent to `stderr`.
|
||||
- Renamed `XFCE` --> `Xfce`. **[@gavinhungry](https://github.com/gavinhungry)**
|
||||
- Config file now has a `.conf` suffix.
|
||||
- Neofetch now assumes target directories (config file and ASCII directory) at install time, this fixes problems with systems such as NixOS.
|
||||
|
||||
## Info
|
||||
|
||||
**Shell**<br \>
|
||||
**CPU**
|
||||
|
||||
- [Fish] Fixed memory leak caused by Fish.
|
||||
- Added support for `xonsh`.
|
||||
- Fixed version output on `ksh`.
|
||||
- Rewrote the function to remove duplicate code. All shells now use `$SHELL --version` to get the version info, with the exception of `mksh` which doesn't have a `--version` flag.
|
||||
- [Linux] Fixed inaccurate output on ARM SoC devices.
|
||||
|
||||
**Uptime**<br \>
|
||||
**Terminal**
|
||||
|
||||
- Moved duplicate code to a function.
|
||||
- Changed `$uptime_shorthand` to `on` by default.
|
||||
|
||||
**Desktop Environment**<br \>
|
||||
|
||||
- Fixed issues where MATE wouldn't be detected properly.
|
||||
- Added fallback to `$DESKTOP_SESSION`, `$MATE_DESKTOP_SESSION_ID` and `$GNOME_DESKTOP_SESSION_ID`.
|
||||
- Hide Desktop Environment if it matches Window Manager.
|
||||
|
||||
**CPU**<br \>
|
||||
|
||||
- [Linux] Don't simplify `cpufreq` speed option names for no reason.
|
||||
- [Linux] Fixed issues with CPU name detection for architectures other than x86/amd64/ARM.
|
||||
- [NetBSD] Remove case statement in favor of 1 line test.
|
||||
- Remove case sensitive substitutions.
|
||||
- We match everything case insensitively so they were pointless.
|
||||
- Simplify check for low CPU speeds.
|
||||
- Expanded `cpu_temp` to take the values `C` and `F`. This means you can now display the CPU temperature as Fahrenheit.
|
||||
|
||||
**CPU Usage**<br \>
|
||||
|
||||
- Added Haiku cores command.
|
||||
- Updated Linux and macOS commands to the match the commands in the `get_cpu()` function.
|
||||
|
||||
**GPU**<br \>
|
||||
|
||||
- [Linux] Each GPU is now printed on a separate line.
|
||||
- [Linux] Added `--gpu_type` / `$gpu_type` which lets you display `all`, `dedicated` or `integrated` GPUs.
|
||||
|
||||
**Memory**<br \>
|
||||
|
||||
- [Solaris] Fixed inaccurate used memory size.
|
||||
|
||||
**Resolution**<br \>
|
||||
|
||||
- [Windows] Declare variables locally to fix conflicts in other functions.
|
||||
|
||||
**~~Birthday~~ Install Date**<br \>
|
||||
|
||||
- Renamed `get_birthday()` -- > `get_install_date()`
|
||||
- Removed all `date` usage from `get_install_date()`.
|
||||
- Added a new function called `convert_time()` which takes the time stamped `ls` output and converts it to a pretty format. The function only uses bash so its much faster than calling `date`. This makes things simple and keeps the output consistent across all Operating Systems. Example: `2016-12-06 16:58:58.000000000` --> `Tue 06 Dec 2016 4:58 PM`
|
||||
- Added an option so users can choose between using 24-hour and 12-hour time format
|
||||
- `get_install_date()` will detect which `ls` program is being used instead of hardcoding them per OS.
|
||||
|
||||
**Disk**<br \>
|
||||
|
||||
- Rewrote function from scratch.
|
||||
- The function is `40` lines smaller than before and works on all \[1\] versions of `df` we tested on \[2\].
|
||||
- Added the option/flag `disk_show` which allows you to specify which disks, mount points or directories to show the disk info of. (One per line)
|
||||
- Added the option/flag `disk_subtitle` which allows you to specify how we label each disk. (Mount point or Disk name)
|
||||
- Removed all percentage calculation since `df` already provides us with the percentage.
|
||||
- Warn the user if `df` isn't installed.
|
||||
- Fixed broken output if `df` wasn't installed but the function was enabled.
|
||||
|
||||
\[1\] The function doesn't work on Haiku since their `df` is wildly non-standard. (The output format and flags are 100% different from all of the other `df` versions floating around.)
|
||||
|
||||
\[2\] Tested on `GNU`, `Busybox`, `BSD`, `Solaris` and `macOS` `df` versions.
|
||||
|
||||
**Theme**<br \>
|
||||
|
||||
- [KDE] Don't display GTK Themes if KDE is detected.
|
||||
- [KDE] If `kde[0-9]-config` isn't found, try and look for `$HOME/.kde`.
|
||||
|
||||
**Window Manager Theme**<br \>
|
||||
|
||||
- Fixed WM Theme not detected on MATE. **[@mstraube](https://github.com/mstraube)**
|
||||
- Fixed WM Theme detection on KDE. **[@mstraube](https://github.com/mstraube)**
|
||||
|
||||
**Song**<br \>
|
||||
|
||||
- [cmus] Simplify block and fix `artistsort` bug.
|
||||
- Removed `state` detection.
|
||||
- Removed duplicate `dbus-send` commands. **[@mstraube](https://github.com/mstraube)**
|
||||
- Hide output if no song is playing.
|
||||
- Enforce order `artist - title` in `get_song_dbus()`. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for xmms2. **[@z33ky](https://github.com/z33ky)**
|
||||
- Added support for Exaile music player. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for JuK .**[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Bluemindo. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Guayadeque Player. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Yarock. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Qmmp. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for QuodLibet. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Mopidy. **[@d3rrial](https://github.com/d3rrial)**
|
||||
|
||||
**Terminal Font**<br \>
|
||||
|
||||
- Added support for Alacritty.
|
||||
- Added support for Konsole. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Sakura Terminal. **[@mstraube](https://github.com/mstraube)**
|
||||
- Added support for Pantheon Terminal. **[@mstraube](https://github.com/mstraube)**
|
||||
- [Termite] Fixed incorrect font chosen. **[@mstraube](https://github.com/mstraube)**
|
||||
- [Termite] Also look at default config. **[@mstraube](https://github.com/mstraube)**
|
||||
|
||||
**Battery**<br \>
|
||||
|
||||
- [MacOS] Fixed issue where battery always appears as charging. **[@jorgegonzalez](https://github.com/jorgegonzalez)**
|
||||
|
||||
**Local IP**<br \>
|
||||
|
||||
- [BSD and Solaris] Merged the detection to Linux.
|
||||
- [Windows] Support multiple interfaces.
|
||||
|
||||
**Color Blocks**<br \>
|
||||
|
||||
- Use start++ instead of adding it manually after case. **[@konimex](https://github.com/konimex)**
|
||||
- Fixed bug where color blocks wouldn't respect width in TTYs.
|
||||
- Cursor positioning now takes `$block_height` into account.
|
||||
- Fixed all artifacts in virtual consoles.
|
||||
- Merged `$start` and `$end` into an array called `block_range`.
|
||||
- This makes the config option match the command-line flag `--block_range`.
|
||||
- [SSH] Fixed infinite loop if neofetch is run on non-interactive shells.
|
||||
|
||||
|
||||
## Images
|
||||
|
||||
- [iTerm2] Fixed blank images.
|
||||
- Fixed bug where image mode would attempt to run in a TTY.
|
||||
- All of the image/ascii backend handling was rewritten. Backend and Image/File/Directory selection is universal now and should make usage easier.
|
||||
- Added `catimg` backend.
|
||||
- Added `caca` backend.
|
||||
- Added `jp2a` backend.
|
||||
- `--image` has been replaced with `--backend`.
|
||||
- `--backend` takes `ascii`, `caca`, `catimg`, `jp2a`, `iterm2`, `off`, `tycat`, `w3m`.
|
||||
- Shortcut flags were added for easy picking of backends.
|
||||
- Each flag can take a file, image or directory as an argument.
|
||||
- For example: `neofetch --w3m /path/to/img.jpg` `neofetch --ascii /path/to/file`
|
||||
- `--w3m`
|
||||
- `--iterm2`
|
||||
- `--tycat`
|
||||
- `--ascii`
|
||||
- `--off`
|
||||
- `--catimg`
|
||||
- `--caca`
|
||||
- `--jp2a`
|
||||
- All image and ascii file selection has been replaced with the universal `--source`.
|
||||
- The value of `--source` can be any of the following:
|
||||
- `auto`, `ascii`, `wallpaper`, `/path/to/img`, `/path/to/ascii`, `/path/to/dir/`.
|
||||
- Fixed bugs with image shuffle mode.
|
||||
|
||||
|
||||
## Wallpaper
|
||||
|
||||
- Decode URI filenames.
|
||||
|
||||
|
||||
## Ascii
|
||||
|
||||
- Simplified ascii file handling.
|
||||
- Removed a call to `tr` for those using `bash 3`.
|
||||
- Fixed distro detection issues.
|
||||
- Removed the assumption that `first word in distro --> ascii file name`
|
||||
- Added Ubuntu-Studio. **[@konimex](https://github.com/konimex)**
|
||||
- Fixed bug causing macOS ascii art to be used on other Operating Systems.
|
||||
- Display warning about 'ascii' being the new default mode.
|
||||
- Removed `ascii_logo_size` in favor of `ascii_distro='{arch,crux,gentoo}_small'`.
|
||||
- [PCBSD] Use TrueOS ascii art.
|
||||
- Added Void Linux (small) and Alpine Linux (small).
|
||||
|
||||
|
||||
## Screenshot
|
||||
|
||||
- Use arrays for `$scrot_program`
|
||||
|
||||
|
||||
## Args
|
||||
|
||||
- Fixed bug where `neofetch --config` sourced the user config twice.
|
||||
- Cleaned up config arg handling.
|
||||
- Fixed division by 0 error in XTerm.
|
||||
|
|
20
Makefile
20
Makefile
|
@ -1,20 +0,0 @@
|
|||
PREFIX = /usr
|
||||
|
||||
all:
|
||||
@echo Run \'make install\' to install Neofetch
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
|
||||
mkdir -p $(DESTDIR)/etc/neofetch
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
|
||||
cp -p neofetch $(DESTDIR)$(PREFIX)/bin/neofetch
|
||||
cp -p neofetch.1 $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
|
||||
cp -p config/config $(DESTDIR)/etc/neofetch/config
|
||||
cp -p ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro
|
||||
|
||||
uninstall:
|
||||
rm -f $(DESTDIR)$(PREFIX)/bin/neofetch
|
||||
rm -f $(DESTDIR)$(PREFIX)/share/man/man1/neofetch.1
|
||||
rm -f -r $(DESTDIR)$(PREFIX)/share/neofetch
|
||||
rm -f -r $(DESTDIR)/etc/neofetch
|
12
README.md
12
README.md
|
@ -6,11 +6,11 @@
|
|||
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md)
|
||||
[![Latest release](https://img.shields.io/github/release/dylanaraps/neofetch.svg)](https://github.com/dylanaraps/neofetch/releases)
|
||||
|
||||
Neofetch is a CLI system information tool written in BASH. Neofetch displays information about your system next to an image, your OS logo, or any ascii file of your choice. The main purpose of Neofetch is to be used in screenshots to show other users what OS/Distro you're running, what Theme/Icons you're using and etc.
|
||||
Neofetch is a CLI system information tool written in BASH. Neofetch displays information about your system next to an image, your OS logo, or any ASCII file of your choice. The main purpose of Neofetch is to be used in screenshots to show other users what OS/Distro you're running, what Theme/Icons you're using etc.
|
||||
|
||||
Neofetch is highly customizable through the use of commandline flags or the user config file. There are over 50 config options to mess around with and there's the `print_info()` function and friends which let you add your own custom info.
|
||||
Neofetch is highly customizable through the use of command line flags or the user config file. There are over 50 config options to mess around with and there's the `print_info()` function and friends which let you add your own custom info.
|
||||
|
||||
Neofetch can be used on any OS that has BASH, it's just a matter of adding support. If your OS/Distro isn't in the list below, feel free to open an issue on the repo and I'll gladly add support. Neofetch currently supports `Linux`, `MacOS`, `iOS`, `BSD`, `Solaris`, `Android`, `Haiku`, `GNU Hurd`, `MINIX`, `AIX`, and `Windows (Cygwin/MSYS2/Windows 10 Linux subsystem)`.
|
||||
Neofetch can be used on any OS that has BASH 3.2+, it's just a matter of adding support. If your OS/Distro isn't in the list below, feel free to open an issue on the repo and I'll gladly add support. Neofetch currently supports `Linux`, `MacOS`, `iOS`, `BSD`, `Solaris`, `Android`, `Haiku`, `GNU Hurd`, `MINIX`, `AIX`, `IRIX`, and `Windows (Cygwin/MSYS2/MinGW/Windows 10 Linux subsystem)`.
|
||||
|
||||
For more information:
|
||||
|
||||
|
@ -48,7 +48,7 @@ https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
|||
|
||||
### Customizing the script using a custom alias
|
||||
|
||||
If you don't want to use the config file you can customize almost everything using launch flags!
|
||||
If you don't want to use the config file you can customize almost everything using launch flags.
|
||||
|
||||
Here's an example neofetch alias:
|
||||
|
||||
|
@ -76,6 +76,6 @@ Thanks to:
|
|||
- Thanks for using Neofetch!
|
||||
- [Screenfetch](https://github.com/KittyKatt/screenFetch):
|
||||
- We've used some snippets as a base for a few functions in this script.
|
||||
- Some of the ascii logos.
|
||||
- Some of the ASCII logos.
|
||||
- [ufetch](https://github.com/jschx/ufetch):
|
||||
- Tiny ascii logos
|
||||
- Tiny ASCII logos
|
||||
|
|
|
@ -7,9 +7,9 @@ ${c1} -`
|
|||
`/:-:++oooo+:
|
||||
`/++++/+++++++:
|
||||
`/++++++++++++++:
|
||||
`/+++ooooooooooooo/`
|
||||
./ooosssso++osssssso+`
|
||||
.oossssso-````/ossssss+`
|
||||
`/+++o${c2}oooooooo${c1}oooo/`
|
||||
${c2} ${c1}./${c2}ooosssso++osssssso${c1}+`
|
||||
${c2} .oossssso-````/ossssss+`
|
||||
-osssssso. :ssssssso.
|
||||
:osssssss/ osssso+++.
|
||||
/ossssssss/ +ssssooo/-
|
||||
|
|
19
ascii/distro/arch_xferience
Normal file
19
ascii/distro/arch_xferience
Normal file
|
@ -0,0 +1,19 @@
|
|||
${c1} ``--:::::::-.`
|
||||
.-/+++ooooooooo+++:-`
|
||||
`-/+oooooooooooooooooo++:.
|
||||
-/+oooooo/+ooooooooo+/ooo++:`
|
||||
`/+oo++oo. .+oooooo+.-: +:-o+-
|
||||
`/+o/. -o. :oooooo+ ```:.+oo+-
|
||||
`:+oo- -/` :oooooo+ .`-`+oooo/.
|
||||
.+ooo+. .` `://///+-+..oooooo+:`
|
||||
-+ooo:` ``.-+oooooo+/`
|
||||
-+oo/` :+oooo/.
|
||||
.+oo: ..-/. . -+oo+/`
|
||||
`/++- -:::++::/. -+oo+-
|
||||
./o: `:///+- `./ooo+:`
|
||||
.++- `` /-` -:/+oooo+:`
|
||||
.:+/:`` `-:ooooooo++-
|
||||
./+o+//:...../+oooooooo++:`
|
||||
`:/++ooooooooooooo++/-`
|
||||
`.-//++++++//:-.`
|
||||
``````
|
19
ascii/distro/archbox
Normal file
19
ascii/distro/archbox
Normal file
|
@ -0,0 +1,19 @@
|
|||
${c1} ...:+oh/:::..
|
||||
..-/oshhhhhh` `::::-.
|
||||
.:/ohhhhhhhhhhhh` `-::::.
|
||||
.+shhhhhhhhhhhhhhhhh` `.::-.
|
||||
/`-:+shhhhhhhhhhhhhh` .-/+shh
|
||||
/ .:/ohhhhhhhhh` .:/ohhhhhhhh
|
||||
/ `-:+shhh` ..:+shhhhhhhhhhhh
|
||||
/ .:ohhhhhhhhhhhhhhhhhhh
|
||||
/ `hhhhhhhhhhhhhhhhhhhh
|
||||
/ `hhhhhhhhhhhhhhhhhhhh
|
||||
/ `hhhhhhhhhhhhhhhhhhhh
|
||||
/ `hhhhhhhhhhhhhhhhhhhh
|
||||
/ .+o+ `hhhhhhhhhhhhhhhhhhhh
|
||||
/ -hhhhh `hhhhhhhhhhhhhhhhhhhh
|
||||
/ ohhhhho `hhhhhhhhhhhhhhhhhhhh
|
||||
/:::+`hhhhoos` `hhhhhhhhhhhhhhhhhs+`
|
||||
`--/:` /: `hhhhhhhhhhhho/-
|
||||
-/:. `hhhhhhs+:-`
|
||||
::::/ho/-`
|
18
ascii/distro/archlabs
Normal file
18
ascii/distro/archlabs
Normal file
|
@ -0,0 +1,18 @@
|
|||
${c1} sy
|
||||
h--d
|
||||
d---:
|
||||
:----/N
|
||||
:------/N
|
||||
N/----:---+
|
||||
N/---+/ :--:o
|
||||
N/--:/ ::::s
|
||||
+--- ::::s
|
||||
N+---+ ::::s
|
||||
N+----o +:o s::::s
|
||||
N/----:: s:::s h:::::s
|
||||
N/----:::y::::+ o::::::o
|
||||
N/---::::::::::s d::::::::+N
|
||||
/--::::::::::::dd::::::::::+N
|
||||
:-:::/+syhd NNN N dhys+/:::/
|
||||
d::+ydN /s+/d
|
||||
arc y\\.
|
20
ascii/distro/cloveros
Normal file
20
ascii/distro/cloveros
Normal file
|
@ -0,0 +1,20 @@
|
|||
${c1} `omo``omo`
|
||||
`oNMMMNNMMMNo`
|
||||
`oNMMMMMMMMMMMMNo`
|
||||
oNMMMMMMMMMMMMMMMMNo
|
||||
`sNMMMMMMMMMMMMMMNs`
|
||||
`omo` `sNMMMMMMMMMMNs` `omo`
|
||||
`oNMMMNo` `sNMMMMMMNs` `oNMMMNo`
|
||||
`oNMMMMMMMNo` `oNMMNs` `oNMMMMMMMNo`
|
||||
oNMMMMMMMMMMMNo` `sy` `oNMMMMMMMMMMMNo
|
||||
`sNMMMMMMMMMMMMNo.${c2}oNNs${c1}.oNMMMMMMMMMMMMNs`
|
||||
`oNMMMMMMMMMMMMNs.${c2}oNNs${c1}.oNMMMMMMMMMMMMNo`
|
||||
oNMMMMMMMMMMMNs` `sy` `oNMMMMMMMMMMMNo
|
||||
`oNMMMMMMMNs` `oNMMNo` `oNMMMMMMMNs`
|
||||
`oNMMMNs` `sNMMMMMMNs` `oNMMMNs`
|
||||
`oNs` `sNMMMMMMMMMMNs` `oNs`
|
||||
`sNMMMMMMMMMMMMMMNs`
|
||||
+NMMMMMMMMMMMMMMMMNo
|
||||
`oNMMMMMMMMMMMMNo`
|
||||
`oNMMMNNMMMNs`
|
||||
`omo``oNs`
|
16
ascii/distro/desaos
Normal file
16
ascii/distro/desaos
Normal file
|
@ -0,0 +1,16 @@
|
|||
${c1}███████████████████████
|
||||
███████████████████████
|
||||
███████████████████████
|
||||
███████████████████████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
████████ ███████
|
||||
██████████████████████████████
|
||||
██████████████████████████████
|
||||
████████████████████████
|
||||
████████████████████████
|
||||
████████████████████████
|
|
@ -1,13 +1,6 @@
|
|||
${c1}+Nhsssss. `MM:
|
||||
${c2}MM/ ./:::/- `MMo::// ./:::/-
|
||||
MM/-osdd-+mm---hNs`MM+--/Md.omd---dmo
|
||||
${c3}MM/ `MM:sMm yMh`MM: .MM-yMh hMy
|
||||
mM+..-MM:oNm...hNy`MM/..:Mm.sNd...dNs
|
||||
${c4}`+++++oo.`-o++++:``oo++++o` `:o+++o:`
|
||||
|
||||
${c1}oo- :o+
|
||||
${c2}MM/ /yo
|
||||
MM/ +mh mmyoosm/`+mh omy`od+..+mo
|
||||
${c3}MM/ sMm MM/ `MM:sMm yMh -dmmm:
|
||||
MM/ sMm MM/ `MM:sMm yMh .hNNm.
|
||||
${c4}MMhsssss.sMm MM/ `MM:-yNsssmMh`sNs-.sMs
|
||||
${c1}_____ _
|
||||
/ ____| | |
|
||||
| | __ ___ | |__ ___
|
||||
| | |_ |/ _ \| '_ \ / _ \
|
||||
| |__| | (_) | |_) | (_) |
|
||||
\_____|\___/|_.__/ \___/
|
||||
|
|
19
ascii/distro/irix
Normal file
19
ascii/distro/irix
Normal file
|
@ -0,0 +1,19 @@
|
|||
${c1} ./ohmNd/ +dNmho/-
|
||||
`:+ydNMMMMMMMM.-MMMMMMMMMdyo:.
|
||||
`hMMMMMMNhs/sMMM-:MMM+/shNMMMMMMh`
|
||||
-NMMMMMmo-` /MMM-/MMM- `-omMMMMMN.
|
||||
`.`-+hNMMMMMNhyMMM-/MMMshmMMMMMmy+...`
|
||||
+mMNds:-:sdNMMMMMMMyyMMMMMMMNdo:.:sdMMm+
|
||||
dMMMMMMmy+.-/ymNMMMMMMMMNmy/-.+hmMMMMMMd
|
||||
oMMMMmMMMMNds:.+MMMmmMMN/.-odNMMMMmMMMM+
|
||||
.MMMM-/ymMMMMMmNMMy..hMMNmMMMMMmy/-MMMM.
|
||||
hMMM/ `/dMMMMMMMN////NMMMMMMMd/. /MMMh
|
||||
/MMMdhmMMMmyyMMMMMMMMMMMMhymMMMmhdMMM:
|
||||
`mMMMMNho//sdMMMMM//NMMMMms//ohNMMMMd
|
||||
`/so/:+ymMMMNMMMM` mMMMMMMMmh+::+o/`
|
||||
`yNMMNho-yMMMM` NMMMm.+hNMMNh`
|
||||
-MMMMd: oMMMM. NMMMh :hMMMM-
|
||||
-yNMMMmooMMMM- NMMMyomMMMNy-
|
||||
.omMMMMMMMM-`NMMMMMMMmo.
|
||||
`:hMMMMMM. NMMMMMh/`
|
||||
.odNm+ /dNms.
|
11
ascii/distro/kslinux
Normal file
11
ascii/distro/kslinux
Normal file
|
@ -0,0 +1,11 @@
|
|||
${c1} K K U U RRRR ooo
|
||||
K K U U R R o o
|
||||
KKK U U RRRR o o
|
||||
K K U U R R o o
|
||||
K K UUU R R ooo
|
||||
|
||||
${c2} SSS AAA W W AAA
|
||||
S A A W W A A
|
||||
SSS AAAAA W W W AAAAA
|
||||
S A A WW WW A A
|
||||
SSS A A W W A A
|
20
ascii/distro/maui
Normal file
20
ascii/distro/maui
Normal file
|
@ -0,0 +1,20 @@
|
|||
${c1} `.-://////:--`
|
||||
.:/oooooooooooooooo+:.
|
||||
`:+ooooooooooooooooooooooo:`
|
||||
`:oooooooooooooooooooooooooooo/`
|
||||
..```-oooooo/-`` `:oooooo+:.` `--
|
||||
:. +oo+-` /ooo/` -/
|
||||
-o. `o+- +o/` -o:
|
||||
`oo` ::` :o/ `+. .+o` /oo.
|
||||
/o+ . -+oo- ` /oo/ `ooo/
|
||||
+o- /ooo+` .+ooo. :ooo+
|
||||
++ .+oooo: -oooo+ `oooo+
|
||||
:. .oooooo` :ooooo- :oooo:
|
||||
` .oooooo: :ooooo+ `ooo+-`
|
||||
.+oooooo` -oooooo: `o/-
|
||||
+oooooo: .ooooooo.
|
||||
/ooooooo` /ooooooo/ ..
|
||||
`:oooooooo/:::/ooooooooo+:--:/:`
|
||||
`:+oooooooooooooooooooooo+:`
|
||||
.:+oooooooooooooooo+:.
|
||||
`.-://////:-.`
|
18
ascii/distro/nitrux
Normal file
18
ascii/distro/nitrux
Normal file
|
@ -0,0 +1,18 @@
|
|||
${c1}`:/.
|
||||
`/yo
|
||||
`/yo
|
||||
`/yo .+:.
|
||||
`/yo .sys+:.`
|
||||
`/yo `-/sys+:.`
|
||||
`/yo ./sss+:.`
|
||||
`/yo .:oss+:-`
|
||||
`/yo ./o///:-`
|
||||
`/yo `.-:///////:`
|
||||
`/yo `.://///++//-``
|
||||
`/yo `.-:////++++/-`
|
||||
`/yo `-://///++o+/-`
|
||||
`/yo `-/+o+++ooo+/-`
|
||||
`/s+:+oooossso/.`
|
||||
`//+sssssso:.
|
||||
`+syyyy+:`
|
||||
:+s+-
|
18
ascii/distro/obrevenge
Normal file
18
ascii/distro/obrevenge
Normal file
|
@ -0,0 +1,18 @@
|
|||
${c1} __ __
|
||||
_@@@@ @@@g_
|
||||
_@@@@@@ @@@@@@
|
||||
_@@@@@@M W@@@@@@_
|
||||
j@@@@P ^W@@@@
|
||||
@@@@L____ _____Q@@@@
|
||||
Q@@@@@@@@@@j@@@@@@@@@@
|
||||
@@@@@ T@j@ T@@@@@
|
||||
@@@@@ ___Q@J@ _@@@@@
|
||||
@@@@@fMMM@@j@jggg@@@@@@
|
||||
@@@@@ j@j@^MW@P @@@@
|
||||
Q@@@@@ggg@@f@ @@@@@@L
|
||||
^@@@@WWMMP ^ Q@@@@
|
||||
@@@@@_ _@@@@l
|
||||
W@@@@@g_____g@@@@@P
|
||||
@@@@@@@@@@@@@@@@l
|
||||
^W@@@@@@@@@@@P
|
||||
^TMMMMTll
|
|
@ -7,8 +7,8 @@ ${c1} / ||\| Y J ) / |/| ./
|
|||
J |)'( | ` F`.'/ ${c3} _
|
||||
${c1} -<| F __ .-< ${c3}(_)
|
||||
${c1} | / .-'${c3}. ${c1}`. /${c3}-. ${c1}L___
|
||||
J \\ < ${c3}\ ${c1} | | ${c5}O${c3}\\\\${c1}|.-' ${c3} _
|
||||
${c1} _J \\ .- \\\\${c3}/ ${c5}O ${c3}| ${c1}| \\ |${c1}F ${c3}(_)
|
||||
J \\ < ${c3}\ ${c1} | | ${c5}O${c3}\\${c1}|.-' ${c3} _
|
||||
${c1} _J \\ .- \\${c3}/ ${c5}O ${c3}| ${c1}| \\ |${c1}F ${c3}(_)
|
||||
${c1} '-F -<_. \\ .-' `-' L__
|
||||
__J _ _. >-' ${c1})${c4}._. ${c1}|-'
|
||||
${c1} `-|.' /_. ${c4}\_| ${c1} F
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
${c1} eeeeeeeee
|
||||
eeeeeeeeeeeeeee
|
||||
eeeeee${c2}//////////${c1}eeeee
|
||||
eeeee${c2}///////////////${c1}eeeee
|
||||
eeeee${c2}/// ////${c1}eeee
|
||||
eeee${c2}// ///${c1}eeeee
|
||||
eee ${c2}///${c1}eeeee
|
||||
ee ${c2}//${c1}eeeeee
|
||||
e ${c2}/${c1}eeeeeee
|
||||
eeeeeee
|
||||
eeeeee
|
||||
eeeeee
|
||||
eeeee
|
||||
eeee
|
||||
eee
|
||||
ee
|
||||
e
|
||||
${c1} `.-. `.
|
||||
`.` `:++. `-+o+.
|
||||
`` `:+/. `:+/. `-+oooo+
|
||||
``-::-.:+/. `:+/. `-+oooooo+
|
||||
`.-:///- ..` .-. `-+oooooooo-
|
||||
`..-..` `+ooooooooo:
|
||||
`` :oooooooo/
|
||||
`ooooooo:
|
||||
`oooooo:
|
||||
-oooo+.
|
||||
+ooo/`
|
||||
-ooo-
|
||||
`+o/.
|
||||
/+-
|
||||
//`
|
||||
-.
|
||||
|
|
|
@ -1,18 +1,23 @@
|
|||
${c1} .',;:cc;,'. .,;::c:,,.
|
||||
,ooolcloooo: 'oooooccloo:
|
||||
.looooc;;:ol :oc;;:ooooo'
|
||||
;oooooo: ,ooooooc.
|
||||
.,:;'. .;:;'.
|
||||
${c2}.... ..'''''. ....
|
||||
.''. ..'''''. ..''.
|
||||
.. ..... ..... ..
|
||||
. .''''''' .''''''. .
|
||||
.'' .'''''''' .'''''''. ''.
|
||||
''' ''''''' .'''''' '''
|
||||
.' ........... ... .'.
|
||||
.... ''''''''. .''.
|
||||
'''''. ''''''''. .'''''
|
||||
'''''. .'''''. .'''''.
|
||||
..''. . .''..
|
||||
.'''''''
|
||||
......
|
||||
${c1} `.::///+:/-. --///+//-:``
|
||||
`+oooooooooooo: `+oooooooooooo:
|
||||
/oooo++//ooooo: ooooo+//+ooooo.
|
||||
`+ooooooo:-:oo- +o+::/ooooooo:
|
||||
`:oooooooo+`` `.oooooooo+-
|
||||
`:++ooo/. :+ooo+/.`
|
||||
${c2}...` `.----.` ``..
|
||||
.::::-``:::::::::.`-:::-`
|
||||
-:::-` .:::::::-` `-:::-
|
||||
`::. `.--.` `` `.---.``.::`
|
||||
.::::::::` -::::::::` `
|
||||
.::` .:::::::::- `::::::::::``::.
|
||||
-:::` ::::::::::. ::::::::::.`:::-
|
||||
:::: -::::::::. `-:::::::: ::::
|
||||
-::- .-:::-.``....``.-::-. -::-
|
||||
.. `` .::::::::. `..`..
|
||||
-:::-` -::::::::::` .:::::`
|
||||
:::::::` -::::::::::` :::::::.
|
||||
.::::::: -::::::::. ::::::::
|
||||
`-:::::` ..--.` ::::::.
|
||||
`...` `...--..` `...`
|
||||
.::::::::::
|
||||
`.-::::-`
|
||||
|
|
17
ascii/distro/slitaz
Normal file
17
ascii/distro/slitaz
Normal file
|
@ -0,0 +1,17 @@
|
|||
${c1} @ @( @
|
||||
@@ @@ @ @/
|
||||
@@ @@ @@ @@
|
||||
@@ %@@ @@ @@
|
||||
@@ %@@@ @@@@@. @@@@ @@
|
||||
@@@ @@@@ @@@@@@@ &@@@ @@@
|
||||
@@@@@@@ %@@@@@@@@@@@@ &@@@% @@@@@@@/
|
||||
,@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/
|
||||
@@@@@@. @@@@@@@@@@@@@@@@@@@@@ /@@@@@@
|
||||
@@ @@@@@ @@@@@@@@@@@@, @@@@@ @@@
|
||||
@@ @@@@. @@@@@@@@@@@@@% #@@@@ @@.
|
||||
@@ ,@@ @@@@@@@@@@@@@ @@@ @@
|
||||
@ @@. @@@@@@@@@@@@@ @@@ *@
|
||||
@ @@ @@@@@@@@@@@@ @@ @
|
||||
@ @@@@@@@@@. #@
|
||||
@ ,@@@@@ @
|
20
ascii/distro/ubuntu-mate
Normal file
20
ascii/distro/ubuntu-mate
Normal file
|
@ -0,0 +1,20 @@
|
|||
${c1} `:+shmNNMMNNmhs+:`
|
||||
.odMMMMMMMMMMMMMMMMMMdo.
|
||||
/dMMMMMMMMMMMMMMMmMMMMMMMMd/
|
||||
:mMMMMMMMMMMMMNNNNM/`/yNMMMMMMm:
|
||||
`yMMMMMMMMMms:..-::oM: -omMMMMMy`
|
||||
`dMMMMMMMMy-.odNMMMMMM: -odMMMMMMd`
|
||||
hMMMMMMMm-.hMMy/....+M:`/yNm+mMMMMMMMh
|
||||
/MMMMNmMN-:NMy`-yNMMMMMmNyyMN:`dMMMMMMM/
|
||||
hMMMMm -odMMh`sMMMMMMMMMMs sMN..MMMMMMMh
|
||||
NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN
|
||||
NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN
|
||||
hMMMMm -odMMh sMMMMMMMMMMs oMN..MMMMMMMh
|
||||
/MMMMNNMN-:NMy`-yNMMMMMNNsyMN:`dMMMMMMM/
|
||||
hMMMMMMMm-.hMMy/....+M:.+hNd+mMMMMMMMh
|
||||
`dMMMMMMMMy-.odNMMMMMM: :smMMMMMMd`
|
||||
yMMMMMMMMMms/..-::oM: .+dMMMMMy
|
||||
:mMMMMMMMMMMMMNNNNM: :smMMMMMMm:
|
||||
/dMMMMMMMMMMMMMMMdNMMMMMMMd/
|
||||
.odMMMMMMMMMMMMMMMMMMdo.
|
||||
`:+shmNNMMNNmhs+:`
|
|
@ -1,11 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# Neofetch config file
|
||||
# https://github.com/dylanaraps/neofetch
|
||||
|
||||
# Speed up script by not using unicode
|
||||
export LC_ALL=C
|
||||
export LANG=C
|
||||
|
||||
# See this wiki page for more info:
|
||||
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
|
||||
|
@ -40,6 +35,7 @@ print_info() {
|
|||
# info "Public IP" public_ip
|
||||
# info "Users" users
|
||||
# info "Install Date" install_date
|
||||
# info "Locale" locale # This only works on glibc systems.
|
||||
|
||||
info line_break
|
||||
info cols
|
||||
|
@ -141,6 +137,17 @@ shell_version="on"
|
|||
# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value.
|
||||
speed_type="bios_limit"
|
||||
|
||||
# CPU speed shorthand
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'.
|
||||
# Flag: --speed_shorthand.
|
||||
#
|
||||
# Example:
|
||||
# on: 'i7-6500U (4) @ 3.1GHz'
|
||||
# off: 'i7-6500U (4) @ 3.100GHz'
|
||||
speed_shorthand="off"
|
||||
|
||||
# Shorten the output of the CPU function
|
||||
#
|
||||
# Default: 'off'
|
||||
|
@ -320,7 +327,7 @@ disk_show=('/')
|
|||
# What to append to the Disk subtitle.
|
||||
#
|
||||
# Default: 'mount'
|
||||
# Values: 'mount', 'name'
|
||||
# Values: 'mount', 'name', 'dir'
|
||||
# Flag: --disk_subtitle
|
||||
#
|
||||
# Example:
|
||||
|
@ -329,6 +336,11 @@ disk_show=('/')
|
|||
#
|
||||
# mount: 'Disk (/): 74G / 118G (66%)'
|
||||
# 'Disk (/mnt/Local Disk): 74G / 118G (66%)'
|
||||
# 'Disk (/mnt/Videos): 74G / 118G (66%)'
|
||||
#
|
||||
# dir: 'Disk (/): 74G / 118G (66%)'
|
||||
# 'Disk (Local Disk): 74G / 118G (66%)'
|
||||
# 'Disk (Videos): 74G / 118G (66%)'
|
||||
disk_subtitle="mount"
|
||||
|
||||
|
||||
|
@ -526,6 +538,7 @@ disk_display="off"
|
|||
|
||||
# Backend Settings
|
||||
|
||||
|
||||
# Image backend.
|
||||
#
|
||||
# Default: 'ascii'
|
||||
|
@ -588,6 +601,15 @@ ascii_bold="on"
|
|||
# Image Options
|
||||
|
||||
|
||||
# Image loop
|
||||
# Setting this to on will make neofetch redraw the image constantly until
|
||||
# Ctrl+C is pressed. This fixes display issues in some terminal emulators.
|
||||
#
|
||||
# Default: 'off'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --loop
|
||||
image_loop="off"
|
||||
|
||||
# Thumbnail directory
|
||||
#
|
||||
# Default: '~/.cache/thumbnails/neofetch'
|
||||
|
@ -673,16 +695,6 @@ scrot="off"
|
|||
# Flag: --scrot_cmd
|
||||
scrot_cmd="auto"
|
||||
|
||||
# Screenshot Directory
|
||||
# Where to save the screenshots
|
||||
#
|
||||
# Default: '~/Pictures/'
|
||||
# Values: 'dir'
|
||||
# Flag: --scrot_dir
|
||||
#
|
||||
# Note: Neofetch won't create the directory if it doesn't exist.
|
||||
scrot_dir="$HOME/Pictures/"
|
||||
|
||||
# Screenshot Filename
|
||||
# What to name the screenshots
|
||||
#
|
||||
|
@ -710,4 +722,4 @@ image_host="teknik"
|
|||
#
|
||||
# NOTE: Don't change this value, neofetch reads this to determine
|
||||
# how to handle backwards compatibility.
|
||||
config_version="2.1.0"
|
||||
config_version="3.2.1-git"
|
|
@ -1,5 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# Neofetch config file for travis.ci
|
||||
# https://github.com/dylanaraps/neofetch
|
||||
|
||||
|
@ -38,6 +36,14 @@ print_info() {
|
|||
info line_break
|
||||
info cols
|
||||
info line_break
|
||||
|
||||
# Testing.
|
||||
prin "prin"
|
||||
prin "prin" "prin"
|
||||
|
||||
# Testing no subtitles.
|
||||
info uptime
|
||||
info disk
|
||||
}
|
||||
|
||||
refresh_rate="on"
|
37
install.sh
Executable file
37
install.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/sh
|
||||
|
||||
while [ "$1" ]; do
|
||||
case "$1" in
|
||||
"--destdir") DESTDIR="$2" ;;
|
||||
"--bindir") BINDIR="$2" ;;
|
||||
"--confdir") CONFDIR="$2" ;;
|
||||
"--prefix") PREFIX="$2" ;;
|
||||
"--asciidir") ASCIIDIR="$2" ;;
|
||||
"--mandir") MANDIR="$2" ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ -z "$PREFIX" ]; then
|
||||
[ -z "$BINDIR" ] && BINDIR="/usr/bin"
|
||||
[ -z "$ASCIIDIR" ] && ASCIIDIR="/usr/share/neofetch/ascii/distro"
|
||||
[ -z "$MANDIR" ] && MANDIR="/usr/share/man/man1"
|
||||
else
|
||||
[ -z "$BINDIR" ] && BINDIR="/bin"
|
||||
[ -z "$ASCIIDIR" ] && ASCIIDIR="/share/neofetch/ascii/distro"
|
||||
[ -z "$MANDIR" ] && MANDIR="/share/man/man1"
|
||||
fi
|
||||
[ -z "$CONFDIR" ] && CONFDIR="/etc/neofetch"
|
||||
|
||||
mkdir -p "${DESTDIR}""${PREFIX}""${BINDIR}"
|
||||
mkdir -p "${DESTDIR}""${PREFIX}""${CONFDIR}"
|
||||
mkdir -p "${DESTDIR}""${PREFIX}""${ASCIIDIR}"
|
||||
mkdir -p "${DESTDIR}""${PREFIX}""${MANDIR}"
|
||||
|
||||
sed -i -e "s|CONFDIR|${PREFIX}${CONFDIR}|g" neofetch
|
||||
sed -i -e "s|ASCIIDIR|${PREFIX}${ASCIIDIR}|g" neofetch
|
||||
|
||||
cp -p neofetch "${DESTDIR}""${PREFIX}""${BINDIR}"
|
||||
cp -p config/config.conf "${DESTDIR}""${PREFIX}""${CONFDIR}"
|
||||
cp -p ascii/distro/* "${DESTDIR}""${PREFIX}""${ASCIIDIR}"
|
||||
cp -p neofetch.1 "${DESTDIR}""${PREFIX}""${MANDIR}"
|
50
neofetch.1
50
neofetch.1
|
@ -1,5 +1,5 @@
|
|||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
|
||||
.TH NEOFETCH "1" "January 2017" "Neofetch 2.1.0" "User Commands"
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
|
||||
.TH NEOFETCH "1" "June 2017" "Neofetch 3.2.1-git" "User Commands"
|
||||
.SH NAME
|
||||
Neofetch \- A fast, highly customizable system info script
|
||||
.SH SYNOPSIS
|
||||
|
@ -30,6 +30,9 @@ scaling_current, scaling_min, scaling_max
|
|||
.IP
|
||||
NOTE: This only supports Linux with cpufreq.
|
||||
.TP
|
||||
\fB\-\-speed_shorthand\fR on/off
|
||||
Whether or not to show decimals in CPU speed.
|
||||
.TP
|
||||
\fB\-\-cpu_shorthand\fR type
|
||||
Shorten the output of CPU
|
||||
Possible values: name, speed, tiny, on, off
|
||||
|
@ -96,12 +99,15 @@ Possible values: '/', '/dev/sdXX', '/path/to/mount point'
|
|||
.IP
|
||||
NOTE: Multiple values can be given. (\fB\-\-disk_show\fR '/' '/dev/sdc1')
|
||||
.TP
|
||||
\fB\-\-disk_subtitle\fR name/mount
|
||||
\fB\-\-disk_subtitle\fR type
|
||||
What information to append to the Disk subtitle.
|
||||
Takes: name, mount, dir
|
||||
.IP
|
||||
\&'name' shows the disk's name (sda1, sda2, etc)
|
||||
.IP
|
||||
\&'mount' shows the disk's mount point (/, \fI\,/mnt/Local\/\fP Disk, etc)
|
||||
.IP
|
||||
\&'dir' shows the basename of the disks's path. (/, Local Disk, etc)
|
||||
.TP
|
||||
\fB\-\-ip_host\fR url
|
||||
URL to query for public IP
|
||||
|
@ -175,29 +181,38 @@ Possible values: bar, infobar, barinfo, off
|
|||
.TP
|
||||
\fB\-\-backend\fR backend
|
||||
Which image backend to use.
|
||||
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'tycat', 'w3m'
|
||||
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'sixel', 'tycat', 'w3m'
|
||||
.TP
|
||||
\fB\-\-source\fR source
|
||||
Which image or ascii file to use.
|
||||
Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
||||
.TP
|
||||
\fB\-\-ascii\fR
|
||||
source Shortcut to use 'ascii' backend.
|
||||
\fB\-\-ascii\fR source
|
||||
Shortcut to use 'ascii' backend.
|
||||
.TP
|
||||
\fB\-\-caca\fR
|
||||
source Shortcut to use 'caca' backend.
|
||||
\fB\-\-caca\fR source
|
||||
Shortcut to use 'caca' backend.
|
||||
.TP
|
||||
\fB\-\-catimg\fR
|
||||
source Shortcut to use 'catimg' backend.
|
||||
\fB\-\-catimg\fR source
|
||||
Shortcut to use 'catimg' backend.
|
||||
.TP
|
||||
\fB\-\-iterm2\fR
|
||||
source Shortcut to use 'iterm2' backend.
|
||||
\fB\-\-iterm2\fR source
|
||||
Shortcut to use 'iterm2' backend.
|
||||
.TP
|
||||
\fB\-\-tycat\fR
|
||||
source Shortcut to use 'tycat' backend.
|
||||
\fB\-\-jp2a\fR source
|
||||
Shortcut to use 'jp2a' backend.
|
||||
.TP
|
||||
\fB\-\-w3m\fR
|
||||
source Shortcut to use 'w3m' backend.
|
||||
\fB\-\-sixel\fR source
|
||||
Shortcut to use 'sixel' backend.
|
||||
.TP
|
||||
\fB\-\-termpix\fR source
|
||||
Shortcut to use 'termpix' backend.
|
||||
.TP
|
||||
\fB\-\-tycat\fR source
|
||||
Shortcut to use 'tycat' backend.
|
||||
.TP
|
||||
\fB\-\-w3m\fR source
|
||||
Shortcut to use 'w3m' backend.
|
||||
.TP
|
||||
\fB\-\-off\fR
|
||||
Shortcut to use 'off' backend.
|
||||
|
@ -232,6 +247,9 @@ Hide the info text and only show the ascii logo.
|
|||
Possible values: bar, infobar, barinfo, off
|
||||
.SS "IMAGE:"
|
||||
.TP
|
||||
\fB\-\-loop\fR
|
||||
Redraw the image constantly until Ctrl+C is used. This fixes issues in some terminals emulators when using image mode.
|
||||
.TP
|
||||
\fB\-\-size\fR 00px | \fB\-\-size\fR 00%
|
||||
How to size the image.
|
||||
Possible values: auto, 00px, 00%, none
|
||||
|
|
Loading…
Reference in a new issue