Install bottom using Winget - wingetCollections
Go back Packages bottom Use this command to install bottom:
winget install --id=Clement.bottom -e Copy WinGet command to clipboard
Yet another cross-platform graphical process/system monitor.
bottom is a cross-platform graphical tool designed for monitoring system processes and resource utilization in real time.
Key Features:
Real-time visualization of CPU, memory, disk, and network usage.
Interactive process management with detailed information about each running task.
Cross-platform compatibility, supporting Windows, Linux, and macOS.
Audience & Benefit:
Ideal for system administrators, developers, and power users who need to monitor and manage system performance efficiently. It provides a unified interface to analyze resource consumption and troubleshoot issues without the need for multiple tools across different operating systems.
bottom can be installed via winget for easy setup on supported platforms.
README
Demo using the <a href="https://github.com/morhetz/gruvbox">Gruvbox</a> theme (--theme gruvbox), along with <a href="https://www.ibm.com/plex/">IBM Plex Mono</a> and <a href="https://sw.kovidgoyal.net/kitty/">Kitty</a>
Table of contents
Related Programs The new Windows Terminal, a tabbed command line experience for Windows.
GitHub CLI (gh) is a command-line tool that brings pull requests, issues, GitHub Actions, and other GitHub features to your terminal, so you can do
Prompt theme engine for any shell
Termius is a modern SSH client for Windows designed to enhance productivity by saving users up to 30 minutes a day. It offers features such as
Core Temp is a compact, no fuss, small footprint, yet powerful program to monitor processor temperature and other vital information.
A terminal built on web technologies
Coffee will keep your computer wide awake while your downloads or network transfers complete. Coffee prevents standby when your traffic speed on a
The Dude network monitor is a new application by MikroTik which can dramatically improve the way you manage your network environment.
A CLI for ChatGPT, powered by GPT-3.5-turbo and GPT-4 models.
ConEmu-Maximus5 aims to be handy, comprehensive, fast and reliable terminal window where you may host any console application developed either for
The new Windows Terminal, a tabbed command line experience for Windows.
GitHub CLI (gh) is a command-line tool that brings pull requests, issues, GitHub Actions, and other GitHub features to your terminal, so you can do
Prompt theme engine for any shell
Termius is a modern SSH client for Windows designed to enhance productivity by saving users up to 30 minutes a day. It offers features such as
Core Temp is a compact, no fuss, small footprint, yet powerful program to monitor processor temperature and other vital information.
A terminal built on web technologies
Coffee will keep your computer wide awake while your downloads or network transfers complete. Coffee prevents standby when your traffic speed on a
The Dude network monitor is a new application by MikroTik which can dramatically improve the way you manage your network environment.
A CLI for ChatGPT, powered by GPT-3.5-turbo and GPT-4 models.
ConEmu-Maximus5 aims to be handy, comprehensive, fast and reliable terminal window where you may host any console application developed either for
0.11.1
Copy WinGet command to clipboard 0.11.0
Copy WinGet command to clipboard 0.10.2
Copy WinGet command to clipboard 0.10.1
Copy WinGet command to clipboard 0.10.0
Copy WinGet command to clipboard 0.9.7
Copy WinGet command to clipboard 0.9.6
Copy WinGet command to clipboard 0.9.5
Copy WinGet command to clipboard 0.9.4
Copy WinGet command to clipboard 0.9.3
Copy WinGet command to clipboard
Features As (yet another) process/system visualization and management application, bottom supports the typical features:
Graphical visualization widgets for:
with support for zooming in/out the current time interval displayed.
Widgets for displaying info about:
A process widget for displaying, sorting, and searching info about processes, as well as support for:
Cross-platform support for Linux, macOS, and Windows, with more planned in the future.
Customizable behaviour that can be controlled with command-line options or a config file, such as:
Custom and built-in colour themes
Customizing widget behaviour
Changing the layout of widgets
Filtering out entries in some widgets
And more:
And more!
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
)
Android (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:
# 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.
# 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.11.1.tar.gz
tar -xzvf 0.11.1.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
:
Arch Linux If you want the latest changes that are not yet stable, you can also install bottom-git
from the AUR :
# Using paru
paru -S bottom-git
# Using yay
yay -S bottom-git
Debian / Ubuntu # x86-64
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.11.1/bottom_0.11.1-1_amd64.deb
sudo dpkg -i bottom_0.11.1-1_amd64.deb
# ARM64
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.11.1/bottom_0.11.1-1_arm64.deb
sudo dpkg -i bottom_0.11.1-1_arm64.deb
# ARM
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.11.1/bottom_0.11.1-1_armhf.deb
sudo dpkg -i bottom_0.11.1-1_armhf.deb
# musl-based
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.11.1/bottom-musl_0.11.1-1_amd64.deb
sudo dpkg -i bottom-musl_0.11.1-1_amd64.deb
Exherbo Linux bottom is available as a rust package that can be installed with cave
:
cave resolve -x repository/rust
cave resolve -x bottom
Fedora / CentOS / AlmaLinux / Rocky Linux bottom is available on COPR :
sudo dnf copr enable atim/bottom -y
sudo dnf install bottom
bottom is also available via Terra :
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
files are also generated for x86 in the releases page.
For example:
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.11.1/bottom-0.11.1-1.x86_64.rpm
sudo rpm -i bottom-0.11.1-1.x86_64.rpm
Gentoo sudo emerge --ask sys-process/bottom
Nix nix profile install nixpkgs#bottom
bottom
can also be installed and configured through the home-manager module:
{
programs.bottom.enable = true;
}
openSUSE Available in openSUSE Tumbleweed:
Snap bottom is available as a snap :
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
Void
gah bottom can also be installed on Linux or macOS using gah :
Homebrew
MacPorts sudo port selfupdate
sudo port install bottom
Chocolatey Chocolatey packages are located here :
Scoop
winget The winget package can be found here :
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 also manually install bottom as a Windows program by going to the latest release
and installing via the .msi
file.
Conda # Add the channel
conda config --add channels conda-forge
conda config --set channel_priority strict
# Install
conda install bottom
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:
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 .
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.
Troubleshooting
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:
<a href="http://shilangyu.github.io"><img src="https://avatars3.githubusercontent.com/u/29288116?v=4?s=100" width="100px;" /><b>Marcin Wojnarowski</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=shilangyu">π»</a> <a href="#platform-shilangyu">π¦</a>
<a href="http://neosmart.net/"><img src="https://avatars3.githubusercontent.com/u/606923?v=4?s=100" width="100px;" /><b>Mahmoud Al-Qudsi</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=mqudsi">π»</a>
<a href="https://andys8.de"><img src="https://avatars0.githubusercontent.com/u/13085980?v=4?s=100" width="100px;" /><b>Andy</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=andys8">π»</a>
<a href="https://github.com/HarHarLinks"><img src="https://avatars0.githubusercontent.com/u/2803622?v=4?s=100" width="100px;" /><b>Kim Brose</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=HarHarLinks">π»</a>
<a href="https://svenstaro.org"><img src="https://avatars0.githubusercontent.com/u/1664?v=4?s=100" width="100px;" /><b>Sven-Hendrik Haase</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=svenstaro">π</a>
<a href="https://liberapay.com/Artem4/"><img src="https://avatars0.githubusercontent.com/u/5614476?v=4?s=100" width="100px;" /><b>Artem Polishchuk</b></a><a href="#platform-tim77">π¦</a> <a href="https://github.com/ClementTsang/bottom/commits?author=tim77">π</a>
<a href="http://ruby-journal.com/"><img src="https://avatars2.githubusercontent.com/u/135605?v=4?s=100" width="100px;" /><b>Trung LΓͺ</b></a><a href="#platform-runlevel5">π¦</a> <a href="#infra-runlevel5">π</a>
<a href="https://github.com/dm9pZCAq"><img src="https://avatars1.githubusercontent.com/u/46228973?v=4?s=100" width="100px;" /><b>dm9pZCAq</b></a><a href="#platform-dm9pZCAq">π¦</a> <a href="https://github.com/ClementTsang/bottom/commits?author=dm9pZCAq">π</a>
<a href="https://lukor.org"><img src="https://avatars2.githubusercontent.com/u/10536802?v=4?s=100" width="100px;" /><b>Lukas Rysavy</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=LlinksRechts">π»</a>
<a href="http://hamberg.no/erlend"><img src="https://avatars3.githubusercontent.com/u/16063?v=4?s=100" width="100px;" /><b>Erlend Hamberg</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=ehamberg">π»</a>
<a href="https://onee3.org"><img src="https://avatars.githubusercontent.com/u/4507647?v=4?s=100" width="100px;" /><b>Frederick Zhang</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=Frederick888">π»</a>
<a href="https://github.com/pvanheus"><img src="https://avatars.githubusercontent.com/u/4154788?v=4?s=100" width="100px;" /><b>pvanheus</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=pvanheus">π»</a>
<a href="https://github.com/briandipalma"><img src="https://avatars.githubusercontent.com/u/1597820?v=4?s=100" width="100px;" /><b>Brian Di Palma</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=briandipalma">π</a>
<a href="https://dakyskye.github.io"><img src="https://avatars.githubusercontent.com/u/32128756?v=4?s=100" width="100px;" /><b>Lasha Kanteladze</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=dakyskye">π</a>
<a href="https://github.com/herbygillot"><img src="https://avatars.githubusercontent.com/u/618376?v=4?s=100" width="100px;" /><b>Herby Gillot</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=herbygillot">π</a>
<a href="https://github.com/yellowsquid"><img src="https://avatars.githubusercontent.com/u/46519298?v=4?s=100" width="100px;" /><b>Greg Brown</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=yellowsquid">π»</a>
<a href="https://github.com/TotalCaesar659"><img src="https://avatars.githubusercontent.com/u/14265316?v=4?s=100" width="100px;" /><b>TotalCaesar659</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=TotalCaesar659">π</a>
<a href="https://github.com/grawlinson"><img src="https://avatars.githubusercontent.com/u/4408051?v=4?s=100" width="100px;" /><b>George Rawlinson</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=grawlinson">π</a> <a href="#platform-grawlinson">π¦</a>
<a href="https://www.frogorbits.com/"><img src="https://avatars.githubusercontent.com/u/101246?v=4?s=100" width="100px;" /><b>adiabatic</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=adiabatic">π</a>
<a href="https://electronsweatshop.com"><img src="https://avatars.githubusercontent.com/u/354506?v=4?s=100" width="100px;" /><b>Randy Barlow</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=bowlofeggs">π»</a>
<a href="http://jackson.dev"><img src="https://avatars.githubusercontent.com/u/160646?v=4?s=100" width="100px;" /><b>Patrick Jackson</b></a><a href="#ideas-patricksjackson">π€</a> <a href="https://github.com/ClementTsang/bottom/commits?author=patricksjackson">π</a>
<a href="https://github.com/mati865"><img src="https://avatars.githubusercontent.com/u/1174646?v=4?s=100" width="100px;" /><b>Mateusz MikuΕa</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=mati865">π»</a>
<a href="https://blog.guillaume-gomez.fr"><img src="https://avatars.githubusercontent.com/u/3050060?v=4?s=100" width="100px;" /><b>Guillaume Gomez</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=GuillaumeGomez">π»</a>
<a href="https://github.com/shurizzle"><img src="https://avatars.githubusercontent.com/u/203655?v=4?s=100" width="100px;" /><b>shura</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=shurizzle">π»</a>
<a href="https://www.wezm.net/"><img src="https://avatars.githubusercontent.com/u/21787?v=4?s=100" width="100px;" /><b>Wesley Moore</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=wezm">π»</a>
<a href="https://github.com/xgdgsc"><img src="https://avatars.githubusercontent.com/u/1189869?v=4?s=100" width="100px;" /><b>xgdgsc</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=xgdgsc">π</a>
<a href="https://github.com/ViridiCanis"><img src="https://avatars.githubusercontent.com/u/49595344?v=4?s=100" width="100px;" /><b>ViridiCanis</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=ViridiCanis">π»</a>
<a href="https://github.com/jamartin9"><img src="https://avatars.githubusercontent.com/u/7027701?v=4?s=100" width="100px;" /><b>Justin Martin</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=jamartin9">π»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=jamartin9">π</a>
<a href="https://github.com/DianaNites"><img src="https://avatars.githubusercontent.com/u/5275194?v=4?s=100" width="100px;" /><b>Diana</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=DianaNites">π»</a>
<a href="https://hervyqa.id"><img src="https://avatars.githubusercontent.com/u/45872139?v=4?s=100" width="100px;" /><b>Hervy Qurrotul Ainur Rozi</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=hervyqa">π</a>
<a href="https://mrivnak.github.io"><img src="https://avatars.githubusercontent.com/u/7389355?v=4?s=100" width="100px;" /><b>Mike Rivnak</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=mrivnak">π</a>
<a href="https://github.com/lroobrou"><img src="https://avatars.githubusercontent.com/u/35152113?v=4?s=100" width="100px;" /><b>lroobrou</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=lroobrou">π»</a>
<a href="https://cube64128.xyz/"><img src="https://avatars.githubusercontent.com/u/18757988?v=4?s=100" width="100px;" /><b>database64128</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=database64128">π»</a>
<a href="https://github.com/sou-chon"><img src="https://avatars.githubusercontent.com/u/35537528?v=4?s=100" width="100px;" /><b>Chon Sou</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=sou-chon">π»</a>
<a href="https://github.com/Drsheppard01"><img src="https://avatars.githubusercontent.com/u/60893791?v=4?s=100" width="100px;" /><b>DrSheppard</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=Drsheppard01">π</a>
<a href="https://github.com/RaresCon"><img src="https://avatars.githubusercontent.com/u/95525840?v=4?s=100" width="100px;" /><b>RareΘ Constantin</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=RaresCon">π»</a>
<a href="http://felipesuri.com"><img src="https://avatars.githubusercontent.com/u/50281523?v=4?s=100" width="100px;" /><b>felipesuri</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=felipesuri">π</a>
<a href="https://github.com/spital"><img src="https://avatars.githubusercontent.com/u/11034264?v=4?s=100" width="100px;" /><b>spital</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=spital">π»</a>
<a href="https://bikodbg.com/"><img src="https://avatars.githubusercontent.com/u/1389811?v=4?s=100" width="100px;" /><b>Michael Bikovitsky</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=mbikovitsky">π»</a>
<a href="https://github.com/dvalter"><img src="https://avatars.githubusercontent.com/u/38795282?v=4?s=100" width="100px;" /><b>Dmitry Valter</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=dvalter">π»</a>
<a href="https://github.com/aragonnetje6"><img src="https://avatars.githubusercontent.com/u/69118097?v=4?s=100" width="100px;" /><b>Grace Stok</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=aragonnetje6">π»</a>
<a href="https://github.com/yshui"><img src="https://avatars.githubusercontent.com/u/366851?v=4?s=100" width="100px;" /><b>Yuxuan Shui</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=yshui">π»</a>
<a href="http://zongwenqing.com"><img src="https://avatars.githubusercontent.com/u/43934749?v=4?s=100" width="100px;" /><b>Wenqing Zong</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=WenqingZong">π»</a>
<a href="http://gabelluardo.github.io"><img src="https://avatars.githubusercontent.com/u/42920247?v=4?s=100" width="100px;" /><b>Gabriele Belluardo</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=gabelluardo">π»</a>
<a href="https://zebulon.dev/"><img src="https://avatars.githubusercontent.com/u/14242997?v=4?s=100" width="100px;" /><b>Zeb Piasecki</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=zebp">π»</a>
<a href="https://freed-wu.github.io/"><img src="https://avatars.githubusercontent.com/u/32936898?v=4?s=100" width="100px;" /><b>wzy</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=Freed-Wu">π»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=Freed-Wu">π</a>
<a href="https://johnlin.ca/"><img src="https://avatars.githubusercontent.com/u/66440371?v=4?s=100" width="100px;" /><b>john-s-lin</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=john-s-lin">π</a>
<a href="https://github.com/lyuha"><img src="https://avatars.githubusercontent.com/u/4014016?v=4?s=100" width="100px;" /><b>Lee Wonjoon</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=lyuha">π»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=lyuha">π</a>
<a href="https://www.davlgd.fr"><img src="https://avatars.githubusercontent.com/u/1110600?v=4?s=100" width="100px;" /><b>David Legrand</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=davlgd">π</a>
<a href="https://github.com/MichalBryxi"><img src="https://avatars.githubusercontent.com/u/847473?v=4?s=100" width="100px;" /><b>Michal BryxΓ</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=MichalBryxi">π</a>
<a href="http://mpia.de/~hviding/"><img src="https://avatars.githubusercontent.com/u/17031860?v=4?s=100" width="100px;" /><b>Raphael Erik Hviding</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=TheSkyentist">π»</a>
<a href="http://cosmichorror.dev"><img src="https://avatars.githubusercontent.com/u/30302768?v=4?s=100" width="100px;" /><b>CosmicHorror</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=CosmicHorrorDev">π»</a>
<a href="https://www.woods.am/"><img src="https://avatars.githubusercontent.com/u/7113557?v=4?s=100" width="100px;" /><b>Ben Woods</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=woodsb02">π</a>
<a href="http://cgdct.moe"><img src="https://avatars.githubusercontent.com/u/20411956?v=4?s=100" width="100px;" /><b>Stephen Huan</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=stephen-huan">π»</a>
<a href="https://github.com/jasongwartz"><img src="https://avatars.githubusercontent.com/u/10981911?v=4?s=100" width="100px;" /><b>Jason Gwartz</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=jasongwartz">π</a>
<a href="https://github.com/llc0930"><img src="https://avatars.githubusercontent.com/u/14966910?v=4?s=100" width="100px;" /><b>llc0930</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=llc0930">π»</a>
<a href="https://chronovore.dev"><img src="https://avatars.githubusercontent.com/u/614231?v=4?s=100" width="100px;" /><b>Ada Ahmed</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=yretenai">π»</a>
<a href="https://github.com/Wateir"><img src="https://avatars.githubusercontent.com/u/78731687?v=4?s=100" width="100px;" /><b>Wateir</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=Wateir">π</a>
<a href="https://github.com/al42and"><img src="https://avatars.githubusercontent.com/u/933873?v=4?s=100" width="100px;" /><b>Andrey Alekseenko</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=al42and">π»</a>
<a href="http://fgimian.github.io/"><img src="https://avatars.githubusercontent.com/u/1811813?v=4?s=100" width="100px;" /><b>Fotis Gimian</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=fgimian">π»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=fgimian">π</a>
<a href="https://sigmasquadron.net"><img src="https://avatars.githubusercontent.com/u/174749595?v=4?s=100" width="100px;" /><b>Fernando Rodrigues</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=SigmaSquadron">π</a>
<a href="https://mtoohey.com"><img src="https://avatars.githubusercontent.com/u/36740602?v=4?s=100" width="100px;" /><b>Matthew Toohey</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=mtoohey31">π»</a>
<a href="https://meander.site"><img src="https://avatars.githubusercontent.com/u/11584387?v=4?s=100" width="100px;" /><b>Julius Enriquez</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=win8linux">π</a>
<a href="https://github.com/benjamb"><img src="https://avatars.githubusercontent.com/u/8291297?v=4?s=100" width="100px;" /><b>Ben Brown</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=benjamb">π»</a>
<a href="https://github.com/nyurik"><img src="https://avatars.githubusercontent.com/u/1641515?v=4?s=100" width="100px;" /><b>Yuri Astrakhan</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=nyurik">π»</a> <a href="https://github.com/ClementTsang/bottom/commits?author=nyurik">π</a>
<a href="https://kachick.github.io/"><img src="https://avatars.githubusercontent.com/u/1180335?v=4?s=100" width="100px;" /><b>Kenichi Kamiya</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=kachick">π»</a>
<a href="https://github.com/yahlia"><img src="https://avatars.githubusercontent.com/u/40295453?v=4?s=100" width="100px;" /><b>yahlia</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=yahlia">π»</a>
<a href="https://github.com/Bucket-Bucket-Bucket"><img src="https://avatars.githubusercontent.com/u/107044719?v=4?s=100" width="100px;" /><b>Bucket-Bucket-Bucket</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=Bucket-Bucket-Bucket">π»</a>
<a href="http://marek.sierocinscy.pl"><img src="https://avatars.githubusercontent.com/u/2142811?v=4?s=100" width="100px;" /><b>Marek SierociΕski</b></a><a href="https://github.com/ClementTsang/bottom/commits?author=marverix">π</a>
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.
Also thanks to JetBrains for providing access to tools that I use to develop bottom
as part of their open source support program .
gsudo is a sudo equivalent for Windows, with a similar user-experience as the original Unix/Linux sudo. Allows you to run a command (or re-launch
gsudo is a sudo equivalent for Windows, with a similar user-experience as the original Unix/Linux sudo. Allows you to run a command (or re-launch
The best online SSH and SFTP tool that supports online file editing, status monitoring and private deployment, providing you with the best data
The best online SSH and SFTP tool that supports online file editing, status monitoring and private deployment, providing you with the best data
Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows 10, macOS and Linux
- Integrated SSH and
Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows 10, macOS and Linux
- Integrated SSH and
A real-time logging dashboard for Kubernetes
A real-time logging dashboard for Kubernetes
Windows Secure Shell Client With Support For Smart Cards & Certificates
Windows Secure Shell Client With Support For Smart Cards & Certificates
Warp is the intelligent terminal with AI and your dev team's knowledge built-in.
Key Features:
- Warp AI: AI integrated in your terminal for natural
Warp is the intelligent terminal with AI and your dev team's knowledge built-in.
Key Features:
- Warp AI: AI integrated in your terminal for natural
Warp is the intelligent terminal with AI and your dev team's knowledge built-in.
Key Features:
- Warp AI: AI integrated in your terminal for natural
Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs
Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs
Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs
The PRTG app for desktop is an alternative interface that you can use to connect to one or several independent PRTG core servers or PRTG Hosted
The PRTG app for desktop is an alternative interface that you can use to connect to one or several independent PRTG core servers or PRTG Hosted
The PRTG app for desktop is an alternative interface that you can use to connect to one or several independent PRTG core servers or PRTG Hosted