gitextract_90er4fjl/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── renovate.json5 │ └── 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 ├── LICENSE ├── 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 ├── 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_log.cpp │ ├── btop_log.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 ├── flexoki-dark.theme ├── flexoki-light.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 ├── orange.theme ├── paper.theme ├── phoenix-night.theme ├── solarized_dark.theme ├── solarized_light.theme ├── tokyo-night.theme ├── tokyo-storm.theme ├── tomorrow-night.theme ├── twilight.theme └── whiteout.theme