├── .github ├── FUNDING.yml └── workflows │ ├── codeql-analysis.yml │ ├── main.yml │ ├── publish-to-pypi.yml │ └── publish-to-test-pypi.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── nvidia-htop.py ├── requirements.txt ├── screen.png ├── setup.py └── test ├── DESIRED_STDOUT ├── DESIRED_STDOUT_COLOR ├── DESIRED_STDOUT_L ├── DESIRED_STDOUT_L150 ├── DESIRED_STDOUT_LONG_PIDS ├── DESIRED_STDOUT_NEW_FORMAT ├── DESIRED_STDOUT_NEW_FORMAT_COLOR ├── DESIRED_STDOUT_NEW_FORMAT_METER ├── DESIRED_STDOUT_NEW_FORMAT_METER_COLOR ├── DESIRED_STDOUT_NEW_FORMAT_METER_L ├── DESIRED_STDOUT_NEW_FORMAT_METER_L150 ├── DESIRED_STDOUT_NEW_FORMAT_METER_LONG_PIDS ├── DESIRED_STDOUT_NEW_FORMAT_USERS ├── DESIRED_STDOUT_NO_PROCESSES ├── DESIRED_STDOUT_NO_PROCESSES_DOCKER ├── FAKE_PS ├── FAKE_PS_LONG_PIDS ├── FAKE_STDIN ├── FAKE_STDIN_LONG_PIDS ├── FAKE_STDIN_NEW_FORMAT ├── FAKE_STDIN_NO_PROCESSES ├── FAKE_STDIN_NO_PROCESSES_DOCKER └── test_main.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/README.md -------------------------------------------------------------------------------- /nvidia-htop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/nvidia-htop.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | termcolor -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/screen.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/setup.py -------------------------------------------------------------------------------- /test/DESIRED_STDOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_COLOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_COLOR -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_L -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_L150: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_L150 -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_LONG_PIDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_LONG_PIDS -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_COLOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_COLOR -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_METER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_METER -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_METER_COLOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_METER_COLOR -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_METER_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_METER_L -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_METER_L150: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_METER_L150 -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_METER_LONG_PIDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_METER_LONG_PIDS -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NEW_FORMAT_USERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NEW_FORMAT_USERS -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NO_PROCESSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NO_PROCESSES -------------------------------------------------------------------------------- /test/DESIRED_STDOUT_NO_PROCESSES_DOCKER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/DESIRED_STDOUT_NO_PROCESSES_DOCKER -------------------------------------------------------------------------------- /test/FAKE_PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_PS -------------------------------------------------------------------------------- /test/FAKE_PS_LONG_PIDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_PS_LONG_PIDS -------------------------------------------------------------------------------- /test/FAKE_STDIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_STDIN -------------------------------------------------------------------------------- /test/FAKE_STDIN_LONG_PIDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_STDIN_LONG_PIDS -------------------------------------------------------------------------------- /test/FAKE_STDIN_NEW_FORMAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_STDIN_NEW_FORMAT -------------------------------------------------------------------------------- /test/FAKE_STDIN_NO_PROCESSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_STDIN_NO_PROCESSES -------------------------------------------------------------------------------- /test/FAKE_STDIN_NO_PROCESSES_DOCKER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/FAKE_STDIN_NO_PROCESSES_DOCKER -------------------------------------------------------------------------------- /test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peci1/nvidia-htop/HEAD/test/test_main.py --------------------------------------------------------------------------------