Back to Bottom

README

README.md

0.12.345.5 KB
Original Source
<div align="center"> <h1>bottom (btm)</h1> <p> A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows. Inspired by <a href=https://github.com/aksakalli/gtop>gtop</a>, <a href=https://github.com/xxxserxxx/gotop>gotop</a>, and <a href=https://github.com/htop-dev/htop>htop</a>. </p>

</div> <div align="center"> <p> <sub> Demo using the <a href="https://github.com/morhetz/gruvbox">Gruvbox</a> theme (<code>--theme gruvbox</code>), along with <a href="https://www.ibm.com/plex/">IBM Plex Mono</a> and <a href="https://sw.kovidgoyal.net/kitty/">Kitty</a> </sub> </p> </div>

Table of contents <!-- omit in toc -->

Features

As (yet another) process/system visualization and management application, bottom supports the typical features:

You can find more details in the documentation.

Support

Official

bottom officially supports the following operating systems and corresponding architectures:

  • macOS (x86_64, aarch64)
  • Linux (x86_64, i686, aarch64)
  • Windows (x86_64, i686)

These platforms are tested to work for the most part and issues on these platforms will be fixed if possible. Furthermore, binaries are built and tested using the most recent version of stable Rust at the time.

For more details on supported platforms and known problems, check out the documentation.

Unofficial

bottom may work on a number of platforms that aren't officially supported. Note that unsupported platforms:

  • Might not be tested in CI to build or pass tests (see here for checked platforms).
  • Might not be properly tested by maintainers prior to a stable release.
  • May only receive limited support, such as missing features or bugs that may not be fixed.

Note that some unsupported platforms may eventually be officially supported (e.g., FreeBSD).

A non-comprehensive list of some currently unofficially-supported platforms that may compile/work include:

  • FreeBSD (x86_64)
  • Linux (armv6, armv7, powerpc64le, riscv64gc, loongarch64)
  • Android (arm64)
  • Windows (arm64)

For more details on unsupported platforms and known problems, check out the documentation.

Installation

Cargo

Installation via cargo can be done by installing the bottom crate:

bash
# You might need to update the stable version of Rust first.
# Other versions might work, but this is not guaranteed.
rustup update stable

# Install the binary from crates.io.
cargo install bottom --locked

# If you use another channel by default, you can specify
# the what channel to use like so:
cargo +stable install bottom --locked

# --locked may be omitted if you wish to not use the
# locked crate versions in Cargo.lock. However, be
# aware that this may cause problems with dependencies.
cargo install bottom

Alternatively, you can use cargo install using the repo as the source.

bash
# You might need to update the stable version of Rust first.
# Other versions might work, but this is not guaranteed.
rustup update stable

# Option 1 - Download an archive from releases and install
curl -LO https://github.com/ClementTsang/bottom/archive/0.12.3.tar.gz
tar -xzvf 0.12.3.tar.gz
cargo install --path . --locked

# Option 2 - Manually clone the repo and install
git clone https://github.com/ClementTsang/bottom
cd bottom
cargo install --path . --locked

# Option 3 - Install using cargo with the repo as the source
cargo install --git https://github.com/ClementTsang/bottom --locked

# You can also pass in the target-cpu=native flag to try to
# use better CPU-specific optimizations. For example:
RUSTFLAGS="-C target-cpu=native" cargo install --path . --locked

Alpine

bottom is available as a package for Alpine Linux via apk:

bash
apk add bottom

Packages for documentation (bottom-doc) and completions for Bash (bottom-bash-completion), Fish (bottom-fish-completion), and Zsh (bottom-zsh-completion) are also available.

Arch Linux

bottom is available as an official package that can be installed with pacman:

bash
sudo pacman -S bottom

If you want the latest changes that are not yet stable, you can also install bottom-git from the AUR:

bash
# Using paru
paru -S bottom-git

# Using yay
yay -S bottom-git

Debian / Ubuntu

A .deb file is provided on each stable release and nightly builds for x86, aarch64, and armv7. Some examples of installing it this way:

bash
# x86-64
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.12.3/bottom_0.12.3-1_amd64.deb
sudo dpkg -i bottom_0.12.3-1_amd64.deb

# ARM64
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.12.3/bottom_0.12.3-1_arm64.deb
sudo dpkg -i bottom_0.12.3-1_arm64.deb

# ARM
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.12.3/bottom_0.12.3-1_armhf.deb
sudo dpkg -i bottom_0.12.3-1_armhf.deb

# musl-based
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.12.3/bottom-musl_0.12.3-1_amd64.deb
sudo dpkg -i bottom-musl_0.12.3-1_amd64.deb

Exherbo Linux

bottom is available as a rust package that can be installed with cave:

bash
cave resolve -x repository/rust
cave resolve -x bottom

Fedora / CentOS / AlmaLinux / Rocky Linux

COPR

[!WARNING]

atim/bottom seems to be unmaintained and may be outdated (relevant issue)

bottom is available on COPR:

bash
sudo dnf copr enable atim/bottom -y
sudo dnf install bottom

Terra

bottom is also available via Terra:

bash
sudo dnf install --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' --setopt='terra.gpgkey=https://repos.fyralabs.com/terra$releasever/key.asc' terra-release
sudo dnf install bottom

RPM

.rpm files are also generated for x86 in the releases page. For example:

bash
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.12.3/bottom-0.12.3-1.x86_64.rpm
sudo dnf install ./bottom-0.12.3-1.x86_64.rpm

Gentoo

Available in the official Gentoo repo:

bash
sudo emerge --ask sys-process/bottom

Nix

Available in Nixpkgs as bottom:

bash
nix profile install nixpkgs#bottom

bottom can also be installed and configured through the home-manager module:

nix
{
  programs.bottom.enable = true;
}

openSUSE

Available in openSUSE Tumbleweed:

bash
zypper in bottom

Snap

bottom is available as a snap:

bash
sudo snap install bottom

# To allow the program to run as intended
sudo snap connect bottom:mount-observe
sudo snap connect bottom:hardware-observe
sudo snap connect bottom:system-observe
sudo snap connect bottom:process-control

Solus

Available in the Solus repos:

bash
sudo eopkg it bottom

Void

Available in the void-packages repo:

bash
sudo xbps-install bottom

gah

bottom can also be installed on Linux or macOS using gah:

bash
gah install bottom

Homebrew

The formula is available here:

bash
brew install bottom

MacPorts

Available here:

bash
sudo port selfupdate
sudo port install bottom

Chocolatey

Chocolatey packages are located here:

bash
choco install bottom

Scoop

Available in the Main bucket:

bash
scoop install bottom

winget

The winget package can be found here:

bash
winget install bottom

# If you need a more specific app id:
winget install Clement.bottom

You can uninstall via Control Panel, Options, or winget --uninstall bottom.

Windows installer

You can manually install bottom as a Windows program by downloading and using the .msi file from the latest release.

Conda

You can install bottom using conda with this conda-smithy repository:

bash
# Add the channel
conda config --add channels conda-forge
conda config --set channel_priority strict

# Install
conda install bottom

mise

bottom is available in mise. You can install it like so:

mise use -g bottom@latest

Pre-built binaries

You can also use the pre-built release binaries:

To use, download and extract the binary that matches your system. You can then run by doing:

bash
./btm

or by installing to your system following the procedures for installing binaries to your system.

Auto-completion

The release binaries in the releases page are packaged with shell auto-completion files for Bash, Zsh, fish, Powershell, Elvish, Fig, and Nushell. To install them:

  • For Bash, move btm.bash to $XDG_CONFIG_HOME/bash_completion or /etc/bash_completion.d/.
  • For Zsh, move _btm to one of your $fpath directories.
  • For fish, move btm.fish to $HOME/.config/fish/completions/.
  • For PowerShell, add _btm.ps1 to your PowerShell profile.
  • For Elvish, the completion file is btm.elv.
  • For Fig, the completion file is btm.ts.
  • For Nushell, source btm.nu.

The individual auto-completion files are also included in the stable/nightly releases as completion.tar.gz if needed.

Usage

You can run bottom using btm.

  • For help on flags, use btm -h for a quick overview or btm --help for more details.
  • For info on key and mouse bindings, press ? inside bottom or refer to the documentation page.

You can find more information on usage in the documentation.

Configuration

bottom accepts a number of command-line arguments to change the behaviour of the application as desired. Additionally, bottom will automatically generate a configuration file on the first launch, which can be changed.

More details on configuration can be found in the documentation.

Troubleshooting

If some things aren't working, give the troubleshooting page a look. If things still aren't working, then consider asking a question or filing a bug report if you think it's a bug.

Documentation

The main documentation page can be found at https://bottom.pages.dev, using Cloudflare Pages. If needed, a mirror hosted using Github Pages is also available at https://clementtsang.github.io/bottom.

Contribution

Whether it's reporting bugs, suggesting features, maintaining packages, or submitting a PR, contribution is always welcome! Please read CONTRIBUTING.md for details on how to contribute to bottom.

Contributors

Thanks to all contributors:

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="http://shilangyu.github.io"> <sub><b>Marcin Wojnarowski</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=shilangyu" title="Code">πŸ’»</a> <a href="#platform-shilangyu" title="Packaging/porting to new platform">πŸ“¦</a></td> <td align="center" valign="top" width="14.28%"><a href="http://neosmart.net/"> <sub><b>Mahmoud Al-Qudsi</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=mqudsi" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://andys8.de"> <sub><b>Andy</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=andys8" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/HarHarLinks"> <sub><b>Kim Brose</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=HarHarLinks" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://svenstaro.org"> <sub><b>Sven-Hendrik Haase</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=svenstaro" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://liberapay.com/Artem4/"> <sub><b>Artem Polishchuk</b></sub></a> <a href="#platform-tim77" title="Packaging/porting to new platform">πŸ“¦</a> <a href="https://github.com/ClementTsang/bottom/commits?author=tim77" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://ruby-journal.com/"> <sub><b>Trung LΓͺ</b></sub></a> <a href="#platform-runlevel5" title="Packaging/porting to new platform">πŸ“¦</a> <a href="#infra-runlevel5" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dm9pZCAq"> <sub><b>dm9pZCAq</b></sub></a> <a href="#platform-dm9pZCAq" title="Packaging/porting to new platform">πŸ“¦</a> <a href="https://github.com/ClementTsang/bottom/commits?author=dm9pZCAq" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://lukor.org"> <sub><b>Lukas Rysavy</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=LlinksRechts" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://hamberg.no/erlend"> <sub><b>Erlend Hamberg</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=ehamberg" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://onee3.org"> <sub><b>Frederick Zhang</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Frederick888" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/pvanheus"> <sub><b>pvanheus</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=pvanheus" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/briandipalma"> <sub><b>Brian Di Palma</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=briandipalma" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://dakyskye.github.io"> <sub><b>Lasha Kanteladze</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=dakyskye" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/herbygillot"> <sub><b>Herby Gillot</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=herbygillot" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/yellowsquid"> <sub><b>Greg Brown</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=yellowsquid" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/TotalCaesar659"> <sub><b>TotalCaesar659</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=TotalCaesar659" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/grawlinson"> <sub><b>George Rawlinson</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=grawlinson" title="Documentation">πŸ“–</a> <a href="#platform-grawlinson" title="Packaging/porting to new platform">πŸ“¦</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.frogorbits.com/"> <sub><b>adiabatic</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=adiabatic" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://electronsweatshop.com"> <sub><b>Randy Barlow</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=bowlofeggs" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://jackson.dev"> <sub><b>Patrick Jackson</b></sub></a> <a href="#ideas-patricksjackson" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/ClementTsang/bottom/commits?author=patricksjackson" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/mati865"> <sub><b>Mateusz MikuΕ‚a</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=mati865" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://blog.guillaume-gomez.fr"> <sub><b>Guillaume Gomez</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=GuillaumeGomez" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/shurizzle"> <sub><b>shura</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=shurizzle" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.wezm.net/"> <sub><b>Wesley Moore</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=wezm" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/xgdgsc"> <sub><b>xgdgsc</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=xgdgsc" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ViridiCanis"> <sub><b>ViridiCanis</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=ViridiCanis" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jamartin9"> <sub><b>Justin Martin</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=jamartin9" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=jamartin9" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/DianaNites"> <sub><b>Diana</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=DianaNites" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://hervyqa.id"> <sub><b>Hervy Qurrotul Ainur Rozi</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=hervyqa" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://mrivnak.github.io"> <sub><b>Mike Rivnak</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=mrivnak" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/lroobrou"> <sub><b>lroobrou</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=lroobrou" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://cube64128.xyz/"> <sub><b>database64128</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=database64128" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/sou-chon"> <sub><b>Chon Sou</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=sou-chon" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Drsheppard01"> <sub><b>DrSheppard</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Drsheppard01" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/RaresCon"> <sub><b>RareΘ™ Constantin</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=RaresCon" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://felipesuri.com"> <sub><b>felipesuri</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=felipesuri" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/spital"> <sub><b>spital</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=spital" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://bikodbg.com/"> <sub><b>Michael Bikovitsky</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=mbikovitsky" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/dvalter"> <sub><b>Dmitry Valter</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=dvalter" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/aragonnetje6"> <sub><b>Grace Stok</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=aragonnetje6" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/yshui"> <sub><b>Yuxuan Shui</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=yshui" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://zongwenqing.com"> <sub><b>Wenqing Zong</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=WenqingZong" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://gabelluardo.github.io"> <sub><b>Gabriele Belluardo</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=gabelluardo" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://zebulon.dev/"> <sub><b>Zeb Piasecki</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=zebp" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://freed-wu.github.io/"> <sub><b>wzy</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Freed-Wu" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=Freed-Wu" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://johnlin.ca/"> <sub><b>john-s-lin</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=john-s-lin" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/lyuha"> <sub><b>Lee Wonjoon</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=lyuha" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=lyuha" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.davlgd.fr"> <sub><b>David Legrand</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=davlgd" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/MichalBryxi"> <sub><b>Michal BryxΓ­</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=MichalBryxi" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://mpia.de/~hviding/"> <sub><b>Raphael Erik Hviding</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=TheSkyentist" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://cosmichorror.dev"> <sub><b>CosmicHorror</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=CosmicHorrorDev" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.woods.am/"> <sub><b>Ben Woods</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=woodsb02" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://cgdct.moe"> <sub><b>Stephen Huan</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=stephen-huan" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jasongwartz"> <sub><b>Jason Gwartz</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=jasongwartz" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/llc0930"> <sub><b>llc0930</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=llc0930" title="Code">πŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://chronovore.dev"> <sub><b>Ada Ahmed</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=yretenai" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Wateir"> <sub><b>Wateir</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Wateir" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/al42and"> <sub><b>Andrey Alekseenko</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=al42and" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://fgimian.github.io/"> <sub><b>Fotis Gimian</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=fgimian" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=fgimian" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://sigmasquadron.net"> <sub><b>Fernando Rodrigues</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=SigmaSquadron" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://mtoohey.com"> <sub><b>Matthew Toohey</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=mtoohey31" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://meander.site"> <sub><b>Julius Enriquez</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=win8linux" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/benjamb"> <sub><b>Ben Brown</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=benjamb" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/nyurik"> <sub><b>Yuri Astrakhan</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=nyurik" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=nyurik" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kachick.github.io/"> <sub><b>Kenichi Kamiya</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=kachick" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/yahlia"> <sub><b>yahlia</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=yahlia" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Bucket-Bucket-Bucket"> <sub><b>Bucket-Bucket-Bucket</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Bucket-Bucket-Bucket" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://marek.sierocinscy.pl"> <sub><b>Marek SierociΕ„ski</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=marverix" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Tommimon"> <sub><b>Tommaso Montanari</b></sub></a> <a href="#design-Tommimon" title="Design">🎨</a> <a href="#ideas-Tommimon" title="Ideas, Planning, & Feedback">πŸ€”</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="http://blog.lenhof.eu.org"> <sub><b>Jean-Yves LENHOF</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=jylenhof" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="http://saphereye.github.io"> <sub><b>Adarsh Das</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=Saphereye" title="Code">πŸ’»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=Saphereye" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/oxyzenQ"> <sub><b>rezky_nightky</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=oxyzenQ" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/gitgoggles"> <sub><b>gitgoggles</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=gitgoggles" title="Code">πŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/thunze"> <sub><b>Tom</b></sub></a> <a href="#maintenance-thunze" title="Maintenance">🚧</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ggaddy"> <sub><b>G</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=ggaddy" title="Documentation">πŸ“–</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/lpnh"> <sub><b>Filipe Paniguel</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=lpnh" title="Documentation">πŸ“–</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://www.jianshu.com/u/f5754cd2e83d"> <sub><b>Qiying Wang</b></sub></a> <a href="https://github.com/ClementTsang/bottom/commits?author=WqyJh" title="Code">πŸ’»</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->

Thanks

  • This project is very much inspired by gotop, gtop, and htop.

  • This application was written with many, many libraries, as well as many services and programs, all built on top of the work of many talented people. bottom would not exist without all of this.

  • And of course, thank you again to all contributors and package maintainers!

  • I also really appreciate anyone who has used bottom, and those who go out of their way to report bugs or suggest ways to improve things. I hope it's been a useful tool for others.

  • To those who support my work financially via donations, thank you so much.

  • Thanks to JetBrains for providing access to tools that I use to develop bottom as part of their open source support program.

    <a href="https://jb.gg/OpenSourceSupport"> </a>
  • Also thanks to SignPath.io for providing a free code signing service, and to the SignPath Foundation for the certificate.