rtomayko (owner)

Revisions

gist: 229079 Download_button fork
public
Description:
htop on macosx
Public Clone URL: git://gist.github.com/229079.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# htop on macosx
 
# I have a staff writeable /usr/local/src directory where I put tarballs
# and stuff but you can do this under /tmp or whatever instead
mkdir -p /usr/local/src
cd /usr/local/src
 
# grab the git repo and checkout the osx branch
git git://github.com/AndyA/htop-osx.git
cd htop-osx
git checkout -b osx origin/osx
 
# bootstrap autocruft
sh autogen.sh
 
# build and install
./configure && make && sudo make install
 
# boom
htop