├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── cmake-freebsd.yml │ ├── cmake-linux.yml │ ├── cmake-macos.yml │ ├── cmake-netbsd.yml │ ├── cmake-openbsd.yml │ ├── continuous-build-freebsd.yml │ ├── continuous-build-gpu.yml │ ├── continuous-build-linux.yml │ ├── continuous-build-macos.yml │ ├── continuous-build-netbsd.yml │ ├── continuous-build-openbsd.yml │ └── test-snap-can-build.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Img ├── alt.png ├── help-menu.png ├── icon.png ├── icon.svg ├── logo.png ├── logo.svg ├── main-menu.png ├── normal.png ├── options-menu.png └── tty.png ├── LICENSE ├── Makefile ├── README.md ├── btop.desktop ├── cmake ├── Finddevstat.cmake ├── Findelf.cmake ├── Findkvm.cmake └── Findproplib.cmake ├── include ├── fmt │ ├── LICENSE.rst │ ├── args.h │ ├── base.h │ ├── chrono.h │ ├── color.h │ ├── compile.h │ ├── core.h │ ├── format-inl.h │ ├── format.h │ ├── os.h │ ├── ostream.h │ ├── printf.h │ ├── ranges.h │ ├── std.h │ └── xchar.h └── widechar_width.hpp ├── manpage.md ├── renovate.json ├── snap └── snapcraft.yaml ├── src ├── btop.cpp ├── btop.hpp ├── btop_cli.cpp ├── btop_cli.hpp ├── btop_config.cpp ├── btop_config.hpp ├── btop_draw.cpp ├── btop_draw.hpp ├── btop_input.cpp ├── btop_input.hpp ├── btop_menu.cpp ├── btop_menu.hpp ├── btop_shared.cpp ├── btop_shared.hpp ├── btop_theme.cpp ├── btop_theme.hpp ├── btop_tools.cpp ├── btop_tools.hpp ├── config.h.in ├── freebsd │ └── btop_collect.cpp ├── linux │ ├── btop_collect.cpp │ └── intel_gpu_top │ │ ├── CMakeLists.txt │ │ ├── drm.h │ │ ├── drm_mode.h │ │ ├── i915_drm.h │ │ ├── i915_pciids.h │ │ ├── i915_pciids_local.h │ │ ├── igt_perf.c │ │ ├── igt_perf.h │ │ ├── intel_chipset.h │ │ ├── intel_device_info.c │ │ ├── intel_gpu_top.c │ │ ├── intel_gpu_top.h │ │ ├── intel_name_lookup_shim.c │ │ ├── source.txt │ │ └── xe_pciids.h ├── main.cpp ├── netbsd │ └── btop_collect.cpp ├── openbsd │ ├── btop_collect.cpp │ ├── internal.h │ ├── sysctlbyname.cpp │ └── sysctlbyname.h └── osx │ ├── btop_collect.cpp │ ├── sensors.cpp │ ├── sensors.hpp │ ├── smc.cpp │ └── smc.hpp ├── tests ├── CMakeLists.txt └── tools.cpp └── themes ├── HotPurpleTrafficLight.theme ├── adapta.theme ├── adwaita-dark.theme ├── adwaita.theme ├── ayu.theme ├── dracula.theme ├── dusklight.theme ├── elementarish.theme ├── everforest-dark-hard.theme ├── everforest-dark-medium.theme ├── everforest-light-medium.theme ├── flat-remix-light.theme ├── flat-remix.theme ├── gotham.theme ├── greyscale.theme ├── gruvbox_dark.theme ├── gruvbox_dark_v2.theme ├── gruvbox_light.theme ├── gruvbox_material_dark.theme ├── horizon.theme ├── kanagawa-lotus.theme ├── kanagawa-wave.theme ├── kyli0x.theme ├── matcha-dark-sea.theme ├── monokai.theme ├── night-owl.theme ├── nord.theme ├── onedark.theme ├── paper.theme ├── phoenix-night.theme ├── solarized_dark.theme ├── solarized_light.theme ├── tokyo-night.theme ├── tokyo-storm.theme ├── tomorrow-night.theme └── whiteout.theme /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cmake-freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/cmake-freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/cmake-linux.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/cmake-macos.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/cmake-netbsd.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/cmake-openbsd.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-gpu.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-macos.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-netbsd.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-build-openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/continuous-build-openbsd.yml -------------------------------------------------------------------------------- /.github/workflows/test-snap-can-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.github/workflows/test-snap-can-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Img/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/alt.png -------------------------------------------------------------------------------- /Img/help-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/help-menu.png -------------------------------------------------------------------------------- /Img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/icon.png -------------------------------------------------------------------------------- /Img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/icon.svg -------------------------------------------------------------------------------- /Img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/logo.png -------------------------------------------------------------------------------- /Img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/logo.svg -------------------------------------------------------------------------------- /Img/main-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/main-menu.png -------------------------------------------------------------------------------- /Img/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/normal.png -------------------------------------------------------------------------------- /Img/options-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/options-menu.png -------------------------------------------------------------------------------- /Img/tty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Img/tty.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/README.md -------------------------------------------------------------------------------- /btop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/btop.desktop -------------------------------------------------------------------------------- /cmake/Finddevstat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/cmake/Finddevstat.cmake -------------------------------------------------------------------------------- /cmake/Findelf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/cmake/Findelf.cmake -------------------------------------------------------------------------------- /cmake/Findkvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/cmake/Findkvm.cmake -------------------------------------------------------------------------------- /cmake/Findproplib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/cmake/Findproplib.cmake -------------------------------------------------------------------------------- /include/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/LICENSE.rst -------------------------------------------------------------------------------- /include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/args.h -------------------------------------------------------------------------------- /include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/base.h -------------------------------------------------------------------------------- /include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/chrono.h -------------------------------------------------------------------------------- /include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/color.h -------------------------------------------------------------------------------- /include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/compile.h -------------------------------------------------------------------------------- /include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/core.h -------------------------------------------------------------------------------- /include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/format-inl.h -------------------------------------------------------------------------------- /include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/format.h -------------------------------------------------------------------------------- /include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/os.h -------------------------------------------------------------------------------- /include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/ostream.h -------------------------------------------------------------------------------- /include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/printf.h -------------------------------------------------------------------------------- /include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/ranges.h -------------------------------------------------------------------------------- /include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/std.h -------------------------------------------------------------------------------- /include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/fmt/xchar.h -------------------------------------------------------------------------------- /include/widechar_width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/include/widechar_width.hpp -------------------------------------------------------------------------------- /manpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/manpage.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/renovate.json -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/btop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop.cpp -------------------------------------------------------------------------------- /src/btop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop.hpp -------------------------------------------------------------------------------- /src/btop_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_cli.cpp -------------------------------------------------------------------------------- /src/btop_cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_cli.hpp -------------------------------------------------------------------------------- /src/btop_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_config.cpp -------------------------------------------------------------------------------- /src/btop_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_config.hpp -------------------------------------------------------------------------------- /src/btop_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_draw.cpp -------------------------------------------------------------------------------- /src/btop_draw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_draw.hpp -------------------------------------------------------------------------------- /src/btop_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_input.cpp -------------------------------------------------------------------------------- /src/btop_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_input.hpp -------------------------------------------------------------------------------- /src/btop_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_menu.cpp -------------------------------------------------------------------------------- /src/btop_menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_menu.hpp -------------------------------------------------------------------------------- /src/btop_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_shared.cpp -------------------------------------------------------------------------------- /src/btop_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_shared.hpp -------------------------------------------------------------------------------- /src/btop_theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_theme.cpp -------------------------------------------------------------------------------- /src/btop_theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_theme.hpp -------------------------------------------------------------------------------- /src/btop_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_tools.cpp -------------------------------------------------------------------------------- /src/btop_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/btop_tools.hpp -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/freebsd/btop_collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/freebsd/btop_collect.cpp -------------------------------------------------------------------------------- /src/linux/btop_collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/btop_collect.cpp -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/CMakeLists.txt -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/drm.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/drm_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/drm_mode.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/i915_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/i915_drm.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/i915_pciids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/i915_pciids.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/i915_pciids_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/i915_pciids_local.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/igt_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/igt_perf.c -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/igt_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/igt_perf.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/intel_chipset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/intel_chipset.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/intel_device_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/intel_device_info.c -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/intel_gpu_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/intel_gpu_top.c -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/intel_gpu_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/intel_gpu_top.h -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/intel_name_lookup_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/intel_name_lookup_shim.c -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/source.txt -------------------------------------------------------------------------------- /src/linux/intel_gpu_top/xe_pciids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/linux/intel_gpu_top/xe_pciids.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/netbsd/btop_collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/netbsd/btop_collect.cpp -------------------------------------------------------------------------------- /src/openbsd/btop_collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/openbsd/btop_collect.cpp -------------------------------------------------------------------------------- /src/openbsd/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/openbsd/internal.h -------------------------------------------------------------------------------- /src/openbsd/sysctlbyname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/openbsd/sysctlbyname.cpp -------------------------------------------------------------------------------- /src/openbsd/sysctlbyname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/openbsd/sysctlbyname.h -------------------------------------------------------------------------------- /src/osx/btop_collect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/osx/btop_collect.cpp -------------------------------------------------------------------------------- /src/osx/sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/osx/sensors.cpp -------------------------------------------------------------------------------- /src/osx/sensors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/osx/sensors.hpp -------------------------------------------------------------------------------- /src/osx/smc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/osx/smc.cpp -------------------------------------------------------------------------------- /src/osx/smc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/src/osx/smc.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/tests/tools.cpp -------------------------------------------------------------------------------- /themes/HotPurpleTrafficLight.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/HotPurpleTrafficLight.theme -------------------------------------------------------------------------------- /themes/adapta.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/adapta.theme -------------------------------------------------------------------------------- /themes/adwaita-dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/adwaita-dark.theme -------------------------------------------------------------------------------- /themes/adwaita.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/adwaita.theme -------------------------------------------------------------------------------- /themes/ayu.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/ayu.theme -------------------------------------------------------------------------------- /themes/dracula.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/dracula.theme -------------------------------------------------------------------------------- /themes/dusklight.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/dusklight.theme -------------------------------------------------------------------------------- /themes/elementarish.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/elementarish.theme -------------------------------------------------------------------------------- /themes/everforest-dark-hard.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/everforest-dark-hard.theme -------------------------------------------------------------------------------- /themes/everforest-dark-medium.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/everforest-dark-medium.theme -------------------------------------------------------------------------------- /themes/everforest-light-medium.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/everforest-light-medium.theme -------------------------------------------------------------------------------- /themes/flat-remix-light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/flat-remix-light.theme -------------------------------------------------------------------------------- /themes/flat-remix.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/flat-remix.theme -------------------------------------------------------------------------------- /themes/gotham.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/gotham.theme -------------------------------------------------------------------------------- /themes/greyscale.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/greyscale.theme -------------------------------------------------------------------------------- /themes/gruvbox_dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/gruvbox_dark.theme -------------------------------------------------------------------------------- /themes/gruvbox_dark_v2.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/gruvbox_dark_v2.theme -------------------------------------------------------------------------------- /themes/gruvbox_light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/gruvbox_light.theme -------------------------------------------------------------------------------- /themes/gruvbox_material_dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/gruvbox_material_dark.theme -------------------------------------------------------------------------------- /themes/horizon.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/horizon.theme -------------------------------------------------------------------------------- /themes/kanagawa-lotus.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/kanagawa-lotus.theme -------------------------------------------------------------------------------- /themes/kanagawa-wave.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/kanagawa-wave.theme -------------------------------------------------------------------------------- /themes/kyli0x.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/kyli0x.theme -------------------------------------------------------------------------------- /themes/matcha-dark-sea.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/matcha-dark-sea.theme -------------------------------------------------------------------------------- /themes/monokai.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/monokai.theme -------------------------------------------------------------------------------- /themes/night-owl.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/night-owl.theme -------------------------------------------------------------------------------- /themes/nord.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/nord.theme -------------------------------------------------------------------------------- /themes/onedark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/onedark.theme -------------------------------------------------------------------------------- /themes/paper.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/paper.theme -------------------------------------------------------------------------------- /themes/phoenix-night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/phoenix-night.theme -------------------------------------------------------------------------------- /themes/solarized_dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/solarized_dark.theme -------------------------------------------------------------------------------- /themes/solarized_light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/solarized_light.theme -------------------------------------------------------------------------------- /themes/tokyo-night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/tokyo-night.theme -------------------------------------------------------------------------------- /themes/tokyo-storm.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/tokyo-storm.theme -------------------------------------------------------------------------------- /themes/tomorrow-night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/tomorrow-night.theme -------------------------------------------------------------------------------- /themes/whiteout.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristocratos/btop/HEAD/themes/whiteout.theme --------------------------------------------------------------------------------