mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-12-08 06:20:21 +01:00
20 lines
811 B
Plaintext
20 lines
811 B
Plaintext
class Bottom < Formula
|
|
desc "A cross-platform graphical process/system monitor with a customizable interface and a multitude of features."
|
|
homepage "https://github.com/ClementTsang/bottom"
|
|
version "$version"
|
|
if OS.mac?
|
|
url "https://github.com/ClementTsang/bottom/releases/download/#{version}/bottom_x86_64-apple-darwin.tar.gz"
|
|
sha256 "$hash1"
|
|
elsif OS.linux?
|
|
url "https://github.com/ClementTsang/bottom/releases/download/#{version}/bottom_x86_64-unknown-linux-gnu.tar.gz"
|
|
sha256 "$hash2"
|
|
end
|
|
|
|
def install
|
|
bin.install "btm"
|
|
ohai "You're done! Run with \"btm\""
|
|
ohai "For runtime flags, see \"btm --help\""
|
|
ohai "If you want to configure bottom, by default bottom looks for a file in $HOME/.config/bottom/bottom.toml"
|
|
end
|
|
end
|
|
|