├── .all-contributorsrc ├── .cargo-husky └── hooks │ └── pre-push ├── .cargo └── config.toml ├── .cirrus.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── packaging.yml ├── ci │ └── rust_version.txt ├── pull_request_template.md └── workflows │ ├── build_releases.yml │ ├── ci.yml │ ├── clear_workflow_cache.yml │ ├── coverage.yml │ ├── deployment.yml │ ├── docs.yml │ ├── nightly.yml │ ├── post_release.yml │ ├── test_docs.yml │ └── validate_schema.yml ├── .gitignore ├── .markdownlint.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Cross.toml ├── LICENSE ├── README.md ├── assets ├── demo.gif └── icons │ ├── bottom-system-monitor.svg │ └── bottom.ico ├── clippy.toml ├── codecov.yml ├── desktop └── bottom.desktop ├── docs ├── .gitignore ├── README.md ├── content │ ├── assets │ │ └── screenshots │ │ │ ├── basic.webp │ │ │ ├── battery.webp │ │ │ ├── config │ │ │ ├── disk-filtering │ │ │ │ ├── disk_name_filter.webp │ │ │ │ ├── disk_name_mount_filter.webp │ │ │ │ └── disk_no_filter.webp │ │ │ └── layout │ │ │ │ └── sample_layout.webp │ │ │ ├── cpu.webp │ │ │ ├── disk.webp │ │ │ ├── memory.webp │ │ │ ├── network │ │ │ ├── network.webp │ │ │ └── network_old.webp │ │ │ ├── process │ │ │ ├── process_default.webp │ │ │ ├── process_full.webp │ │ │ ├── process_grouped.webp │ │ │ ├── process_kill_linux.webp │ │ │ ├── process_kill_simple.webp │ │ │ ├── process_sort_menu.webp │ │ │ ├── process_tree.webp │ │ │ └── search │ │ │ │ ├── cpu.webp │ │ │ │ ├── or.webp │ │ │ │ ├── quotes.webp │ │ │ │ ├── regex.webp │ │ │ │ └── search.webp │ │ │ ├── temperature.webp │ │ │ └── troubleshooting │ │ │ ├── cmd_prompt_font.webp │ │ │ ├── cmd_prompt_props.webp │ │ │ ├── dots.webp │ │ │ ├── no_braille.webp │ │ │ └── regedit_fonts.webp │ ├── configuration │ │ ├── command-line-options.md │ │ └── config-file │ │ │ ├── cpu.md │ │ │ ├── disk-table.md │ │ │ ├── flags.md │ │ │ ├── index.md │ │ │ ├── layout.md │ │ │ ├── network.md │ │ │ ├── processes.md │ │ │ ├── styling.md │ │ │ └── temperature-table.md │ ├── contribution │ │ ├── development │ │ │ ├── build_process.md │ │ │ ├── deploy_process.md │ │ │ ├── dev_env.md │ │ │ ├── logging.md │ │ │ └── testing.md │ │ ├── documentation.md │ │ ├── issues-and-pull-requests.md │ │ └── packaging-and-distribution.md │ ├── index.md │ ├── overrides │ │ └── main.html │ ├── stylesheets │ │ └── extra.css │ ├── support │ │ ├── official.md │ │ └── unofficial.md │ ├── troubleshooting.md │ └── usage │ │ ├── autocomplete.md │ │ ├── basic-mode.md │ │ ├── general-usage.md │ │ └── widgets │ │ ├── battery.md │ │ ├── cpu.md │ │ ├── disk.md │ │ ├── memory.md │ │ ├── network.md │ │ ├── process.md │ │ └── temperature.md ├── mkdocs.yml ├── requirements.txt └── serve.sh ├── rustfmt.toml ├── sample_configs ├── default_config.toml └── demo_config.toml ├── schema ├── README.md ├── nightly │ └── bottom.json ├── v0.10 │ └── bottom.json ├── v0.11 │ └── bottom.json └── v0.9 │ └── bottom.json ├── scripts ├── cirrus │ └── release.py ├── clear_cache.py ├── schema │ ├── bad_file.toml │ ├── generate.sh │ ├── requirements.txt │ └── validator.py └── windows │ └── choco │ ├── bottom.nuspec.template │ ├── choco_packager.py │ └── chocolateyinstall.ps1.template ├── src ├── app.rs ├── app │ ├── data │ │ ├── mod.rs │ │ ├── process.rs │ │ ├── store.rs │ │ ├── temperature.rs │ │ └── time_series.rs │ ├── filter.rs │ ├── layout_manager.rs │ └── states.rs ├── bin │ ├── main.rs │ └── schema.rs ├── canvas.rs ├── canvas │ ├── components │ │ ├── data_table.rs │ │ ├── data_table │ │ │ ├── column.rs │ │ │ ├── data_type.rs │ │ │ ├── draw.rs │ │ │ ├── props.rs │ │ │ ├── sortable.rs │ │ │ ├── state.rs │ │ │ └── styling.rs │ │ ├── mod.rs │ │ ├── pipe_gauge.rs │ │ ├── time_graph │ │ │ ├── base.rs │ │ │ ├── base │ │ │ │ ├── time_chart.rs │ │ │ │ └── time_chart │ │ │ │ │ ├── canvas.rs │ │ │ │ │ ├── grid.rs │ │ │ │ │ └── points.rs │ │ │ ├── mod.rs │ │ │ └── variants │ │ │ │ ├── auto_y_axis.rs │ │ │ │ ├── mod.rs │ │ │ │ └── percent.rs │ │ └── widget_carousel.rs │ ├── dialogs │ │ ├── help_dialog.rs │ │ ├── mod.rs │ │ └── process_kill_dialog.rs │ ├── drawing_utils.rs │ └── widgets │ │ ├── battery_display.rs │ │ ├── cpu_basic.rs │ │ ├── cpu_graph.rs │ │ ├── disk_table.rs │ │ ├── mem_basic.rs │ │ ├── mem_graph.rs │ │ ├── mod.rs │ │ ├── network_basic.rs │ │ ├── network_graph.rs │ │ ├── process_table.rs │ │ └── temperature_table.rs ├── collection.rs ├── collection │ ├── amd.rs │ ├── amd │ │ └── amd_gpu_marketing.rs │ ├── batteries.rs │ ├── cpu.rs │ ├── cpu │ │ └── sysinfo.rs │ ├── disks.rs │ ├── disks │ │ ├── freebsd.rs │ │ ├── io_counters.rs │ │ ├── other.rs │ │ ├── unix.rs │ │ ├── unix │ │ │ ├── file_systems.rs │ │ │ ├── linux │ │ │ │ ├── counters.rs │ │ │ │ ├── mod.rs │ │ │ │ └── partition.rs │ │ │ ├── macos │ │ │ │ ├── counters.rs │ │ │ │ ├── io_kit.rs │ │ │ │ ├── io_kit │ │ │ │ │ ├── bindings.rs │ │ │ │ │ ├── io_disks.rs │ │ │ │ │ ├── io_iterator.rs │ │ │ │ │ └── io_object.rs │ │ │ │ └── mod.rs │ │ │ ├── other │ │ │ │ ├── bindings.rs │ │ │ │ ├── mod.rs │ │ │ │ └── partition.rs │ │ │ └── usage.rs │ │ ├── windows.rs │ │ ├── windows │ │ │ └── bindings.rs │ │ └── zfs_io_counters.rs │ ├── error.rs │ ├── linux │ │ └── utils.rs │ ├── memory.rs │ ├── memory │ │ ├── arc.rs │ │ ├── sysinfo.rs │ │ └── windows.rs │ ├── network.rs │ ├── network │ │ └── sysinfo.rs │ ├── nvidia.rs │ ├── processes.rs │ ├── processes │ │ ├── freebsd.rs │ │ ├── linux │ │ │ ├── mod.rs │ │ │ └── process.rs │ │ ├── macos.rs │ │ ├── macos │ │ │ └── sysctl_bindings.rs │ │ ├── unix.rs │ │ ├── unix │ │ │ ├── process_ext.rs │ │ │ └── user_table.rs │ │ └── windows.rs │ ├── temperature.rs │ └── temperature │ │ ├── linux.rs │ │ └── sysinfo.rs ├── constants.rs ├── event.rs ├── lib.rs ├── options.rs ├── options │ ├── args.rs │ ├── config.rs │ ├── config │ │ ├── cpu.rs │ │ ├── disk.rs │ │ ├── flags.rs │ │ ├── ignore_list.rs │ │ ├── layout.rs │ │ ├── network.rs │ │ ├── process.rs │ │ ├── style.rs │ │ ├── style │ │ │ ├── battery.rs │ │ │ ├── borders.rs │ │ │ ├── cpu.rs │ │ │ ├── graphs.rs │ │ │ ├── memory.rs │ │ │ ├── network.rs │ │ │ ├── tables.rs │ │ │ ├── themes.rs │ │ │ ├── themes │ │ │ │ ├── default.rs │ │ │ │ ├── gruvbox.rs │ │ │ │ └── nord.rs │ │ │ ├── utils.rs │ │ │ └── widgets.rs │ │ └── temperature.rs │ └── error.rs ├── utils │ ├── cancellation_token.rs │ ├── conversion.rs │ ├── data_units.rs │ ├── general.rs │ ├── logging.rs │ ├── process_killer.rs │ └── strings.rs └── widgets │ ├── battery_info.rs │ ├── cpu_graph.rs │ ├── disk_table.rs │ ├── mem_graph.rs │ ├── mod.rs │ ├── network_graph.rs │ ├── process_table.rs │ ├── process_table │ ├── process_columns.rs │ ├── process_data.rs │ ├── query.rs │ └── sort_table.rs │ └── temperature_table.rs ├── tests ├── integration │ ├── arg_tests.rs │ ├── invalid_config_tests.rs │ ├── layout_movement_tests.rs │ ├── main.rs │ ├── util.rs │ └── valid_config_tests.rs ├── invalid_configs │ ├── duplicate_temp_type.toml │ ├── empty_layout.toml │ ├── invalid_colour_hex.toml │ ├── invalid_colour_hex_2.toml │ ├── invalid_colour_hex_3.toml │ ├── invalid_colour_name.toml │ ├── invalid_colour_rgb.toml │ ├── invalid_colour_rgb_2.toml │ ├── invalid_colour_string.toml │ ├── invalid_default_widget_count.toml │ ├── invalid_disk_column.toml │ ├── invalid_layout_widget_type.toml │ ├── invalid_process_column.toml │ ├── lone_default_widget_count.toml │ └── toml_mismatch_type.toml └── valid_configs │ ├── all_proc.toml │ ├── cpu_doughnut.toml │ ├── empty_config.toml │ ├── filtering.toml │ ├── many_proc.toml │ ├── os_specific │ └── linux.toml │ ├── proc_columns.toml │ ├── styling.toml │ ├── styling_2.toml │ └── theme.toml └── wix ├── License.rtf └── main.wxs /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.cargo-husky/hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.cargo-husky/hooks/pre-push -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/ISSUE_TEMPLATE/packaging.yml -------------------------------------------------------------------------------- /.github/ci/rust_version.txt: -------------------------------------------------------------------------------- 1 | 1.91.1 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/build_releases.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clear_workflow_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/clear_workflow_cache.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/deployment.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/post_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/post_release.yml -------------------------------------------------------------------------------- /.github/workflows/test_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/test_docs.yml -------------------------------------------------------------------------------- /.github/workflows/validate_schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.github/workflows/validate_schema.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Cross.toml: -------------------------------------------------------------------------------- 1 | [build.env] 2 | passthrough = ["RUST_BACKTRACE", "BTM_GENERATE"] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/icons/bottom-system-monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/assets/icons/bottom-system-monitor.svg -------------------------------------------------------------------------------- /assets/icons/bottom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/assets/icons/bottom.ico -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/clippy.toml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/codecov.yml -------------------------------------------------------------------------------- /desktop/bottom.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/desktop/bottom.desktop -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | site/ 2 | venv/ 3 | .cache/ 4 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/content/assets/screenshots/basic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/basic.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/battery.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/battery.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/config/disk-filtering/disk_name_filter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/config/disk-filtering/disk_name_filter.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/config/disk-filtering/disk_name_mount_filter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/config/disk-filtering/disk_name_mount_filter.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/config/disk-filtering/disk_no_filter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/config/disk-filtering/disk_no_filter.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/config/layout/sample_layout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/config/layout/sample_layout.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/cpu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/cpu.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/disk.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/disk.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/memory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/memory.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/network/network.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/network/network.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/network/network_old.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/network/network_old.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_default.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_default.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_full.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_full.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_grouped.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_grouped.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_kill_linux.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_kill_linux.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_kill_simple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_kill_simple.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_sort_menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_sort_menu.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/process_tree.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/process_tree.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/search/cpu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/search/cpu.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/search/or.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/search/or.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/search/quotes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/search/quotes.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/search/regex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/search/regex.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/process/search/search.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/process/search/search.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/temperature.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/temperature.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/troubleshooting/cmd_prompt_font.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/troubleshooting/cmd_prompt_font.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/troubleshooting/cmd_prompt_props.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/troubleshooting/cmd_prompt_props.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/troubleshooting/dots.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/troubleshooting/dots.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/troubleshooting/no_braille.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/troubleshooting/no_braille.webp -------------------------------------------------------------------------------- /docs/content/assets/screenshots/troubleshooting/regedit_fonts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/assets/screenshots/troubleshooting/regedit_fonts.webp -------------------------------------------------------------------------------- /docs/content/configuration/command-line-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/command-line-options.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/cpu.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/disk-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/disk-table.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/flags.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/index.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/layout.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/network.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/processes.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/styling.md -------------------------------------------------------------------------------- /docs/content/configuration/config-file/temperature-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/configuration/config-file/temperature-table.md -------------------------------------------------------------------------------- /docs/content/contribution/development/build_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/development/build_process.md -------------------------------------------------------------------------------- /docs/content/contribution/development/deploy_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/development/deploy_process.md -------------------------------------------------------------------------------- /docs/content/contribution/development/dev_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/development/dev_env.md -------------------------------------------------------------------------------- /docs/content/contribution/development/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/development/logging.md -------------------------------------------------------------------------------- /docs/content/contribution/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/development/testing.md -------------------------------------------------------------------------------- /docs/content/contribution/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/documentation.md -------------------------------------------------------------------------------- /docs/content/contribution/issues-and-pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/issues-and-pull-requests.md -------------------------------------------------------------------------------- /docs/content/contribution/packaging-and-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/contribution/packaging-and-distribution.md -------------------------------------------------------------------------------- /docs/content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/index.md -------------------------------------------------------------------------------- /docs/content/overrides/main.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /docs/content/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/content/support/official.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/support/official.md -------------------------------------------------------------------------------- /docs/content/support/unofficial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/support/unofficial.md -------------------------------------------------------------------------------- /docs/content/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/troubleshooting.md -------------------------------------------------------------------------------- /docs/content/usage/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/autocomplete.md -------------------------------------------------------------------------------- /docs/content/usage/basic-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/basic-mode.md -------------------------------------------------------------------------------- /docs/content/usage/general-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/general-usage.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/battery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/battery.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/cpu.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/disk.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/memory.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/network.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/process.md -------------------------------------------------------------------------------- /docs/content/usage/widgets/temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/content/usage/widgets/temperature.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/docs/serve.sh -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /sample_configs/default_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/sample_configs/default_config.toml -------------------------------------------------------------------------------- /sample_configs/demo_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/sample_configs/demo_config.toml -------------------------------------------------------------------------------- /schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/schema/README.md -------------------------------------------------------------------------------- /schema/nightly/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/schema/nightly/bottom.json -------------------------------------------------------------------------------- /schema/v0.10/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/schema/v0.10/bottom.json -------------------------------------------------------------------------------- /schema/v0.11/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/schema/v0.11/bottom.json -------------------------------------------------------------------------------- /schema/v0.9/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/schema/v0.9/bottom.json -------------------------------------------------------------------------------- /scripts/cirrus/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/cirrus/release.py -------------------------------------------------------------------------------- /scripts/clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/clear_cache.py -------------------------------------------------------------------------------- /scripts/schema/bad_file.toml: -------------------------------------------------------------------------------- 1 | [flags] 2 | hide_avg_cpu = 'bad' 3 | -------------------------------------------------------------------------------- /scripts/schema/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/schema/generate.sh -------------------------------------------------------------------------------- /scripts/schema/requirements.txt: -------------------------------------------------------------------------------- 1 | jsonschema-rs == 0.32.1 2 | -------------------------------------------------------------------------------- /scripts/schema/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/schema/validator.py -------------------------------------------------------------------------------- /scripts/windows/choco/bottom.nuspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/windows/choco/bottom.nuspec.template -------------------------------------------------------------------------------- /scripts/windows/choco/choco_packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/windows/choco/choco_packager.py -------------------------------------------------------------------------------- /scripts/windows/choco/chocolateyinstall.ps1.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/scripts/windows/choco/chocolateyinstall.ps1.template -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/app/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/data/mod.rs -------------------------------------------------------------------------------- /src/app/data/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/data/process.rs -------------------------------------------------------------------------------- /src/app/data/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/data/store.rs -------------------------------------------------------------------------------- /src/app/data/temperature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/data/temperature.rs -------------------------------------------------------------------------------- /src/app/data/time_series.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/data/time_series.rs -------------------------------------------------------------------------------- /src/app/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/filter.rs -------------------------------------------------------------------------------- /src/app/layout_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/layout_manager.rs -------------------------------------------------------------------------------- /src/app/states.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/app/states.rs -------------------------------------------------------------------------------- /src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/bin/main.rs -------------------------------------------------------------------------------- /src/bin/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/bin/schema.rs -------------------------------------------------------------------------------- /src/canvas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/column.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/column.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/data_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/data_type.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/draw.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/props.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/props.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/sortable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/sortable.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/state.rs -------------------------------------------------------------------------------- /src/canvas/components/data_table/styling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/data_table/styling.rs -------------------------------------------------------------------------------- /src/canvas/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/mod.rs -------------------------------------------------------------------------------- /src/canvas/components/pipe_gauge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/pipe_gauge.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/base.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/base/time_chart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/base/time_chart.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/base/time_chart/canvas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/base/time_chart/canvas.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/base/time_chart/grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/base/time_chart/grid.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/base/time_chart/points.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/base/time_chart/points.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/mod.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/variants/auto_y_axis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/variants/auto_y_axis.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/variants/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/variants/mod.rs -------------------------------------------------------------------------------- /src/canvas/components/time_graph/variants/percent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/time_graph/variants/percent.rs -------------------------------------------------------------------------------- /src/canvas/components/widget_carousel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/components/widget_carousel.rs -------------------------------------------------------------------------------- /src/canvas/dialogs/help_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/dialogs/help_dialog.rs -------------------------------------------------------------------------------- /src/canvas/dialogs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/dialogs/mod.rs -------------------------------------------------------------------------------- /src/canvas/dialogs/process_kill_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/dialogs/process_kill_dialog.rs -------------------------------------------------------------------------------- /src/canvas/drawing_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/drawing_utils.rs -------------------------------------------------------------------------------- /src/canvas/widgets/battery_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/battery_display.rs -------------------------------------------------------------------------------- /src/canvas/widgets/cpu_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/cpu_basic.rs -------------------------------------------------------------------------------- /src/canvas/widgets/cpu_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/cpu_graph.rs -------------------------------------------------------------------------------- /src/canvas/widgets/disk_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/disk_table.rs -------------------------------------------------------------------------------- /src/canvas/widgets/mem_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/mem_basic.rs -------------------------------------------------------------------------------- /src/canvas/widgets/mem_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/mem_graph.rs -------------------------------------------------------------------------------- /src/canvas/widgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/mod.rs -------------------------------------------------------------------------------- /src/canvas/widgets/network_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/network_basic.rs -------------------------------------------------------------------------------- /src/canvas/widgets/network_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/network_graph.rs -------------------------------------------------------------------------------- /src/canvas/widgets/process_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/process_table.rs -------------------------------------------------------------------------------- /src/canvas/widgets/temperature_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/canvas/widgets/temperature_table.rs -------------------------------------------------------------------------------- /src/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection.rs -------------------------------------------------------------------------------- /src/collection/amd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/amd.rs -------------------------------------------------------------------------------- /src/collection/amd/amd_gpu_marketing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/amd/amd_gpu_marketing.rs -------------------------------------------------------------------------------- /src/collection/batteries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/batteries.rs -------------------------------------------------------------------------------- /src/collection/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/cpu.rs -------------------------------------------------------------------------------- /src/collection/cpu/sysinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/cpu/sysinfo.rs -------------------------------------------------------------------------------- /src/collection/disks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks.rs -------------------------------------------------------------------------------- /src/collection/disks/freebsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/freebsd.rs -------------------------------------------------------------------------------- /src/collection/disks/io_counters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/io_counters.rs -------------------------------------------------------------------------------- /src/collection/disks/other.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/other.rs -------------------------------------------------------------------------------- /src/collection/disks/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/file_systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/file_systems.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/linux/counters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/linux/counters.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/linux/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/linux/mod.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/linux/partition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/linux/partition.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/counters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/counters.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/io_kit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/io_kit.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/io_kit/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/io_kit/bindings.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/io_kit/io_disks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/io_kit/io_disks.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/io_kit/io_iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/io_kit/io_iterator.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/io_kit/io_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/io_kit/io_object.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/macos/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/macos/mod.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/other/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/other/bindings.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/other/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/other/mod.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/other/partition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/other/partition.rs -------------------------------------------------------------------------------- /src/collection/disks/unix/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/unix/usage.rs -------------------------------------------------------------------------------- /src/collection/disks/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/windows.rs -------------------------------------------------------------------------------- /src/collection/disks/windows/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/windows/bindings.rs -------------------------------------------------------------------------------- /src/collection/disks/zfs_io_counters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/disks/zfs_io_counters.rs -------------------------------------------------------------------------------- /src/collection/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/error.rs -------------------------------------------------------------------------------- /src/collection/linux/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/linux/utils.rs -------------------------------------------------------------------------------- /src/collection/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/memory.rs -------------------------------------------------------------------------------- /src/collection/memory/arc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/memory/arc.rs -------------------------------------------------------------------------------- /src/collection/memory/sysinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/memory/sysinfo.rs -------------------------------------------------------------------------------- /src/collection/memory/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/memory/windows.rs -------------------------------------------------------------------------------- /src/collection/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/network.rs -------------------------------------------------------------------------------- /src/collection/network/sysinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/network/sysinfo.rs -------------------------------------------------------------------------------- /src/collection/nvidia.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/nvidia.rs -------------------------------------------------------------------------------- /src/collection/processes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes.rs -------------------------------------------------------------------------------- /src/collection/processes/freebsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/freebsd.rs -------------------------------------------------------------------------------- /src/collection/processes/linux/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/linux/mod.rs -------------------------------------------------------------------------------- /src/collection/processes/linux/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/linux/process.rs -------------------------------------------------------------------------------- /src/collection/processes/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/macos.rs -------------------------------------------------------------------------------- /src/collection/processes/macos/sysctl_bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/macos/sysctl_bindings.rs -------------------------------------------------------------------------------- /src/collection/processes/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/unix.rs -------------------------------------------------------------------------------- /src/collection/processes/unix/process_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/unix/process_ext.rs -------------------------------------------------------------------------------- /src/collection/processes/unix/user_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/unix/user_table.rs -------------------------------------------------------------------------------- /src/collection/processes/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/processes/windows.rs -------------------------------------------------------------------------------- /src/collection/temperature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/temperature.rs -------------------------------------------------------------------------------- /src/collection/temperature/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/temperature/linux.rs -------------------------------------------------------------------------------- /src/collection/temperature/sysinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/collection/temperature/sysinfo.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options.rs -------------------------------------------------------------------------------- /src/options/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/args.rs -------------------------------------------------------------------------------- /src/options/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config.rs -------------------------------------------------------------------------------- /src/options/config/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/cpu.rs -------------------------------------------------------------------------------- /src/options/config/disk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/disk.rs -------------------------------------------------------------------------------- /src/options/config/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/flags.rs -------------------------------------------------------------------------------- /src/options/config/ignore_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/ignore_list.rs -------------------------------------------------------------------------------- /src/options/config/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/layout.rs -------------------------------------------------------------------------------- /src/options/config/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/network.rs -------------------------------------------------------------------------------- /src/options/config/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/process.rs -------------------------------------------------------------------------------- /src/options/config/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style.rs -------------------------------------------------------------------------------- /src/options/config/style/battery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/battery.rs -------------------------------------------------------------------------------- /src/options/config/style/borders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/borders.rs -------------------------------------------------------------------------------- /src/options/config/style/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/cpu.rs -------------------------------------------------------------------------------- /src/options/config/style/graphs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/graphs.rs -------------------------------------------------------------------------------- /src/options/config/style/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/memory.rs -------------------------------------------------------------------------------- /src/options/config/style/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/network.rs -------------------------------------------------------------------------------- /src/options/config/style/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/tables.rs -------------------------------------------------------------------------------- /src/options/config/style/themes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/themes.rs -------------------------------------------------------------------------------- /src/options/config/style/themes/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/themes/default.rs -------------------------------------------------------------------------------- /src/options/config/style/themes/gruvbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/themes/gruvbox.rs -------------------------------------------------------------------------------- /src/options/config/style/themes/nord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/themes/nord.rs -------------------------------------------------------------------------------- /src/options/config/style/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/utils.rs -------------------------------------------------------------------------------- /src/options/config/style/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/style/widgets.rs -------------------------------------------------------------------------------- /src/options/config/temperature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/config/temperature.rs -------------------------------------------------------------------------------- /src/options/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/options/error.rs -------------------------------------------------------------------------------- /src/utils/cancellation_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/cancellation_token.rs -------------------------------------------------------------------------------- /src/utils/conversion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/conversion.rs -------------------------------------------------------------------------------- /src/utils/data_units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/data_units.rs -------------------------------------------------------------------------------- /src/utils/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/general.rs -------------------------------------------------------------------------------- /src/utils/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/logging.rs -------------------------------------------------------------------------------- /src/utils/process_killer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/process_killer.rs -------------------------------------------------------------------------------- /src/utils/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/utils/strings.rs -------------------------------------------------------------------------------- /src/widgets/battery_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/battery_info.rs -------------------------------------------------------------------------------- /src/widgets/cpu_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/cpu_graph.rs -------------------------------------------------------------------------------- /src/widgets/disk_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/disk_table.rs -------------------------------------------------------------------------------- /src/widgets/mem_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/mem_graph.rs -------------------------------------------------------------------------------- /src/widgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/mod.rs -------------------------------------------------------------------------------- /src/widgets/network_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/network_graph.rs -------------------------------------------------------------------------------- /src/widgets/process_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/process_table.rs -------------------------------------------------------------------------------- /src/widgets/process_table/process_columns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/process_table/process_columns.rs -------------------------------------------------------------------------------- /src/widgets/process_table/process_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/process_table/process_data.rs -------------------------------------------------------------------------------- /src/widgets/process_table/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/process_table/query.rs -------------------------------------------------------------------------------- /src/widgets/process_table/sort_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/process_table/sort_table.rs -------------------------------------------------------------------------------- /src/widgets/temperature_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/src/widgets/temperature_table.rs -------------------------------------------------------------------------------- /tests/integration/arg_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/arg_tests.rs -------------------------------------------------------------------------------- /tests/integration/invalid_config_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/invalid_config_tests.rs -------------------------------------------------------------------------------- /tests/integration/layout_movement_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/layout_movement_tests.rs -------------------------------------------------------------------------------- /tests/integration/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/main.rs -------------------------------------------------------------------------------- /tests/integration/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/util.rs -------------------------------------------------------------------------------- /tests/integration/valid_config_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/integration/valid_config_tests.rs -------------------------------------------------------------------------------- /tests/invalid_configs/duplicate_temp_type.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/duplicate_temp_type.toml -------------------------------------------------------------------------------- /tests/invalid_configs/empty_layout.toml: -------------------------------------------------------------------------------- 1 | [[row]] -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_hex.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_hex.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_hex_2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_hex_2.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_hex_3.toml: -------------------------------------------------------------------------------- 1 | [styles.tables.headers] 2 | color = "#加拿大" 3 | -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_name.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_name.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_rgb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_rgb.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_rgb_2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_rgb_2.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_colour_string.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_colour_string.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_default_widget_count.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_default_widget_count.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_disk_column.toml: -------------------------------------------------------------------------------- 1 | [disk] 2 | columns = ["disk", "fake"] 3 | -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_layout_widget_type.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/invalid_configs/invalid_layout_widget_type.toml -------------------------------------------------------------------------------- /tests/invalid_configs/invalid_process_column.toml: -------------------------------------------------------------------------------- 1 | [processes] 2 | columns = ["cpu", "fake"] 3 | -------------------------------------------------------------------------------- /tests/invalid_configs/lone_default_widget_count.toml: -------------------------------------------------------------------------------- 1 | [flags] 2 | default_widget_count = 3 3 | -------------------------------------------------------------------------------- /tests/invalid_configs/toml_mismatch_type.toml: -------------------------------------------------------------------------------- 1 | [flags] 2 | basic = "test" 3 | -------------------------------------------------------------------------------- /tests/valid_configs/all_proc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/all_proc.toml -------------------------------------------------------------------------------- /tests/valid_configs/cpu_doughnut.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/cpu_doughnut.toml -------------------------------------------------------------------------------- /tests/valid_configs/empty_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/empty_config.toml -------------------------------------------------------------------------------- /tests/valid_configs/filtering.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/filtering.toml -------------------------------------------------------------------------------- /tests/valid_configs/many_proc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/many_proc.toml -------------------------------------------------------------------------------- /tests/valid_configs/os_specific/linux.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/os_specific/linux.toml -------------------------------------------------------------------------------- /tests/valid_configs/proc_columns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/proc_columns.toml -------------------------------------------------------------------------------- /tests/valid_configs/styling.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/styling.toml -------------------------------------------------------------------------------- /tests/valid_configs/styling_2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/styling_2.toml -------------------------------------------------------------------------------- /tests/valid_configs/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/tests/valid_configs/theme.toml -------------------------------------------------------------------------------- /wix/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/wix/License.rtf -------------------------------------------------------------------------------- /wix/main.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementTsang/bottom/HEAD/wix/main.wxs --------------------------------------------------------------------------------