├── .gitignore ├── AUTHORS ├── AffinityPanel.c ├── AffinityPanel.h ├── AvailableColumnsPanel.c ├── AvailableColumnsPanel.h ├── AvailableMetersPanel.c ├── AvailableMetersPanel.h ├── BatteryMeter.c ├── BatteryMeter.h ├── COPYING ├── CPUMeter.c ├── CPUMeter.h ├── CPUTemperatureMeter.c ├── CPUTemperatureMeter.h ├── CRT.c ├── CRT.h ├── CategoriesPanel.c ├── CategoriesPanel.h ├── ChangeLog ├── CheckItem.c ├── CheckItem.h ├── ClockMeter.c ├── ClockMeter.h ├── ColorsPanel.c ├── ColorsPanel.h ├── ColumnsPanel.c ├── ColumnsPanel.h ├── DebugMemory.c ├── DebugMemory.h ├── DisplayOptionsPanel.c ├── DisplayOptionsPanel.h ├── FanRPMMeter.c ├── FanRPMMeter.h ├── FunctionBar.c ├── FunctionBar.h ├── Hashtable.c ├── Hashtable.h ├── Header.c ├── Header.h ├── HostnameMeter.c ├── HostnameMeter.h ├── INSTALL ├── ListItem.c ├── ListItem.h ├── LoadAverageMeter.c ├── LoadAverageMeter.h ├── Makefile.am ├── MemoryMeter.c ├── MemoryMeter.h ├── Meter.c ├── Meter.h ├── MetersPanel.c ├── MetersPanel.h ├── NEWS ├── Object.c ├── Object.h ├── OpenFilesScreen.c ├── OpenFilesScreen.h ├── Panel.c ├── Panel.h ├── Process.c ├── Process.h ├── ProcessList.c ├── ProcessList.h ├── README ├── RichString.c ├── RichString.h ├── ScreenManager.c ├── ScreenManager.h ├── Settings.c ├── Settings.h ├── SignalItem.c ├── SignalItem.h ├── SignalsPanel.c ├── SignalsPanel.h ├── String.c ├── String.h ├── SwapMeter.c ├── SwapMeter.h ├── TODO ├── TasksMeter.c ├── TasksMeter.h ├── TraceScreen.c ├── TraceScreen.h ├── UptimeMeter.c ├── UptimeMeter.h ├── UsersTable.c ├── UsersTable.h ├── Vector.c ├── Vector.h ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── debug.h ├── htop.1 ├── htop.c ├── htop.desktop ├── htop.h ├── htop.png ├── scripts └── MakeHeader.py ├── shared_memory_server_shim.h ├── smc.c ├── smc.h ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Hisham H. Muhammad 2 | -------------------------------------------------------------------------------- /AffinityPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AffinityPanel.c -------------------------------------------------------------------------------- /AffinityPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AffinityPanel.h -------------------------------------------------------------------------------- /AvailableColumnsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AvailableColumnsPanel.c -------------------------------------------------------------------------------- /AvailableColumnsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AvailableColumnsPanel.h -------------------------------------------------------------------------------- /AvailableMetersPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AvailableMetersPanel.c -------------------------------------------------------------------------------- /AvailableMetersPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/AvailableMetersPanel.h -------------------------------------------------------------------------------- /BatteryMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/BatteryMeter.c -------------------------------------------------------------------------------- /BatteryMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/BatteryMeter.h -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/COPYING -------------------------------------------------------------------------------- /CPUMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CPUMeter.c -------------------------------------------------------------------------------- /CPUMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CPUMeter.h -------------------------------------------------------------------------------- /CPUTemperatureMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CPUTemperatureMeter.c -------------------------------------------------------------------------------- /CPUTemperatureMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CPUTemperatureMeter.h -------------------------------------------------------------------------------- /CRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CRT.c -------------------------------------------------------------------------------- /CRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CRT.h -------------------------------------------------------------------------------- /CategoriesPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CategoriesPanel.c -------------------------------------------------------------------------------- /CategoriesPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CategoriesPanel.h -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ChangeLog -------------------------------------------------------------------------------- /CheckItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CheckItem.c -------------------------------------------------------------------------------- /CheckItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/CheckItem.h -------------------------------------------------------------------------------- /ClockMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ClockMeter.c -------------------------------------------------------------------------------- /ClockMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ClockMeter.h -------------------------------------------------------------------------------- /ColorsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ColorsPanel.c -------------------------------------------------------------------------------- /ColorsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ColorsPanel.h -------------------------------------------------------------------------------- /ColumnsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ColumnsPanel.c -------------------------------------------------------------------------------- /ColumnsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ColumnsPanel.h -------------------------------------------------------------------------------- /DebugMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/DebugMemory.c -------------------------------------------------------------------------------- /DebugMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/DebugMemory.h -------------------------------------------------------------------------------- /DisplayOptionsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/DisplayOptionsPanel.c -------------------------------------------------------------------------------- /DisplayOptionsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/DisplayOptionsPanel.h -------------------------------------------------------------------------------- /FanRPMMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/FanRPMMeter.c -------------------------------------------------------------------------------- /FanRPMMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/FanRPMMeter.h -------------------------------------------------------------------------------- /FunctionBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/FunctionBar.c -------------------------------------------------------------------------------- /FunctionBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/FunctionBar.h -------------------------------------------------------------------------------- /Hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Hashtable.c -------------------------------------------------------------------------------- /Hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Hashtable.h -------------------------------------------------------------------------------- /Header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Header.c -------------------------------------------------------------------------------- /Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Header.h -------------------------------------------------------------------------------- /HostnameMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/HostnameMeter.c -------------------------------------------------------------------------------- /HostnameMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/HostnameMeter.h -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/INSTALL -------------------------------------------------------------------------------- /ListItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ListItem.c -------------------------------------------------------------------------------- /ListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ListItem.h -------------------------------------------------------------------------------- /LoadAverageMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/LoadAverageMeter.c -------------------------------------------------------------------------------- /LoadAverageMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/LoadAverageMeter.h -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Makefile.am -------------------------------------------------------------------------------- /MemoryMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/MemoryMeter.c -------------------------------------------------------------------------------- /MemoryMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/MemoryMeter.h -------------------------------------------------------------------------------- /Meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Meter.c -------------------------------------------------------------------------------- /Meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Meter.h -------------------------------------------------------------------------------- /MetersPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/MetersPanel.c -------------------------------------------------------------------------------- /MetersPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/MetersPanel.h -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/NEWS -------------------------------------------------------------------------------- /Object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Object.c -------------------------------------------------------------------------------- /Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Object.h -------------------------------------------------------------------------------- /OpenFilesScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/OpenFilesScreen.c -------------------------------------------------------------------------------- /OpenFilesScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/OpenFilesScreen.h -------------------------------------------------------------------------------- /Panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Panel.c -------------------------------------------------------------------------------- /Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Panel.h -------------------------------------------------------------------------------- /Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Process.c -------------------------------------------------------------------------------- /Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Process.h -------------------------------------------------------------------------------- /ProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ProcessList.c -------------------------------------------------------------------------------- /ProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ProcessList.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/README -------------------------------------------------------------------------------- /RichString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/RichString.c -------------------------------------------------------------------------------- /RichString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/RichString.h -------------------------------------------------------------------------------- /ScreenManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ScreenManager.c -------------------------------------------------------------------------------- /ScreenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/ScreenManager.h -------------------------------------------------------------------------------- /Settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Settings.c -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Settings.h -------------------------------------------------------------------------------- /SignalItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SignalItem.c -------------------------------------------------------------------------------- /SignalItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SignalItem.h -------------------------------------------------------------------------------- /SignalsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SignalsPanel.c -------------------------------------------------------------------------------- /SignalsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SignalsPanel.h -------------------------------------------------------------------------------- /String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/String.c -------------------------------------------------------------------------------- /String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/String.h -------------------------------------------------------------------------------- /SwapMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SwapMeter.c -------------------------------------------------------------------------------- /SwapMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/SwapMeter.h -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/TODO -------------------------------------------------------------------------------- /TasksMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/TasksMeter.c -------------------------------------------------------------------------------- /TasksMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/TasksMeter.h -------------------------------------------------------------------------------- /TraceScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/TraceScreen.c -------------------------------------------------------------------------------- /TraceScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/TraceScreen.h -------------------------------------------------------------------------------- /UptimeMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/UptimeMeter.c -------------------------------------------------------------------------------- /UptimeMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/UptimeMeter.h -------------------------------------------------------------------------------- /UsersTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/UsersTable.c -------------------------------------------------------------------------------- /UsersTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/UsersTable.h -------------------------------------------------------------------------------- /Vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Vector.c -------------------------------------------------------------------------------- /Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/Vector.h -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/configure.ac -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/debug.h -------------------------------------------------------------------------------- /htop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/htop.1 -------------------------------------------------------------------------------- /htop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/htop.c -------------------------------------------------------------------------------- /htop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/htop.desktop -------------------------------------------------------------------------------- /htop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/htop.h -------------------------------------------------------------------------------- /htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/htop.png -------------------------------------------------------------------------------- /scripts/MakeHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/scripts/MakeHeader.py -------------------------------------------------------------------------------- /shared_memory_server_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/shared_memory_server_shim.h -------------------------------------------------------------------------------- /smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/smc.c -------------------------------------------------------------------------------- /smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/smc.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-horvath/htop-osx/HEAD/util.h --------------------------------------------------------------------------------