├── .gitattributes ├── .github └── workflows │ └── fetchTranslationsFromCrowdin.yaml ├── .gitignore ├── COPYING.txt ├── addon ├── doc │ ├── ar │ │ └── readme.md │ ├── bg │ │ └── readme.md │ ├── da │ │ └── readme.md │ ├── de │ │ └── readme.md │ ├── es │ │ └── readme.md │ ├── fa │ │ └── readme.md │ ├── fi │ │ └── readme.md │ ├── fr │ │ └── readme.md │ ├── gl │ │ └── readme.md │ ├── hr │ │ └── readme.md │ ├── hu │ │ └── readme.md │ ├── it │ │ └── readme.md │ ├── ja │ │ └── readme.md │ ├── ko │ │ └── readme.md │ ├── ne │ │ └── readme.md │ ├── nl │ │ └── readme.md │ ├── pl │ │ └── readme.md │ ├── pt_BR │ │ └── readme.md │ ├── pt_PT │ │ └── readme.md │ ├── ro │ │ └── readme.md │ ├── ru │ │ └── readme.md │ ├── sk │ │ └── readme.md │ ├── sl │ │ └── readme.md │ ├── sr │ │ └── readme.md │ ├── tr │ │ └── readme.md │ ├── uk │ │ └── readme.md │ ├── vi │ │ └── readme.md │ ├── zh_CN │ │ └── readme.md │ └── zh_TW │ │ └── readme.md ├── globalPlugins │ └── resourceMonitor │ │ ├── __init__.py │ │ ├── connect.wav │ │ ├── disconnect.wav │ │ └── wlanapi.py └── locale │ ├── an │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ar │ └── LC_MESSAGES │ │ └── nvda.po │ ├── bg │ └── LC_MESSAGES │ │ └── nvda.po │ ├── da │ └── LC_MESSAGES │ │ └── nvda.po │ ├── de │ └── LC_MESSAGES │ │ └── nvda.po │ ├── de_CH │ └── LC_MESSAGES │ │ └── nvda.po │ ├── es │ └── LC_MESSAGES │ │ └── nvda.po │ ├── es_CO │ └── LC_MESSAGES │ │ └── nvda.po │ ├── fa │ └── LC_MESSAGES │ │ └── nvda.po │ ├── fi │ └── LC_MESSAGES │ │ └── nvda.po │ ├── fr │ └── LC_MESSAGES │ │ └── nvda.po │ ├── gl │ └── LC_MESSAGES │ │ └── nvda.po │ ├── he │ └── LC_MESSAGES │ │ └── nvda.po │ ├── hr │ └── LC_MESSAGES │ │ └── nvda.po │ ├── hu │ └── LC_MESSAGES │ │ └── nvda.po │ ├── it │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ja │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ko │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ne │ └── LC_MESSAGES │ │ └── nvda.po │ ├── nl │ └── LC_MESSAGES │ │ └── nvda.po │ ├── pl │ └── LC_MESSAGES │ │ └── nvda.po │ ├── pt_BR │ └── LC_MESSAGES │ │ └── nvda.po │ ├── pt_PT │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ro │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ru │ └── LC_MESSAGES │ │ └── nvda.po │ ├── sk │ └── LC_MESSAGES │ │ └── nvda.po │ ├── sl │ └── LC_MESSAGES │ │ └── nvda.po │ ├── sr │ └── LC_MESSAGES │ │ └── nvda.po │ ├── ta │ └── LC_MESSAGES │ │ └── nvda.po │ ├── tr │ └── LC_MESSAGES │ │ └── nvda.po │ ├── uk │ └── LC_MESSAGES │ │ └── nvda.po │ ├── vi │ └── LC_MESSAGES │ │ └── nvda.po │ ├── zh_CN │ └── LC_MESSAGES │ │ └── nvda.po │ └── zh_TW │ └── LC_MESSAGES │ └── nvda.po ├── manifest-translated.ini.tpl ├── manifest.ini.tpl ├── pyproject.toml ├── readme.md ├── sconstruct ├── site_scons └── site_tools │ ├── NVDATool │ ├── __init__.py │ ├── addon.py │ ├── docs.py │ ├── manifests.py │ ├── typings.py │ └── utils.py │ └── gettexttool │ └── __init__.py └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/fetchTranslationsFromCrowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/.github/workflows/fetchTranslationsFromCrowdin.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/COPYING.txt -------------------------------------------------------------------------------- /addon/doc/ar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ar/readme.md -------------------------------------------------------------------------------- /addon/doc/bg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/bg/readme.md -------------------------------------------------------------------------------- /addon/doc/da/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/da/readme.md -------------------------------------------------------------------------------- /addon/doc/de/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/de/readme.md -------------------------------------------------------------------------------- /addon/doc/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/es/readme.md -------------------------------------------------------------------------------- /addon/doc/fa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/fa/readme.md -------------------------------------------------------------------------------- /addon/doc/fi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/fi/readme.md -------------------------------------------------------------------------------- /addon/doc/fr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/fr/readme.md -------------------------------------------------------------------------------- /addon/doc/gl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/gl/readme.md -------------------------------------------------------------------------------- /addon/doc/hr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/hr/readme.md -------------------------------------------------------------------------------- /addon/doc/hu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/hu/readme.md -------------------------------------------------------------------------------- /addon/doc/it/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/it/readme.md -------------------------------------------------------------------------------- /addon/doc/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ja/readme.md -------------------------------------------------------------------------------- /addon/doc/ko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ko/readme.md -------------------------------------------------------------------------------- /addon/doc/ne/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ne/readme.md -------------------------------------------------------------------------------- /addon/doc/nl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/nl/readme.md -------------------------------------------------------------------------------- /addon/doc/pl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/pl/readme.md -------------------------------------------------------------------------------- /addon/doc/pt_BR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/pt_BR/readme.md -------------------------------------------------------------------------------- /addon/doc/pt_PT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/pt_PT/readme.md -------------------------------------------------------------------------------- /addon/doc/ro/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ro/readme.md -------------------------------------------------------------------------------- /addon/doc/ru/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/ru/readme.md -------------------------------------------------------------------------------- /addon/doc/sk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/sk/readme.md -------------------------------------------------------------------------------- /addon/doc/sl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/sl/readme.md -------------------------------------------------------------------------------- /addon/doc/sr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/sr/readme.md -------------------------------------------------------------------------------- /addon/doc/tr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/tr/readme.md -------------------------------------------------------------------------------- /addon/doc/uk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/uk/readme.md -------------------------------------------------------------------------------- /addon/doc/vi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/vi/readme.md -------------------------------------------------------------------------------- /addon/doc/zh_CN/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/zh_CN/readme.md -------------------------------------------------------------------------------- /addon/doc/zh_TW/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/doc/zh_TW/readme.md -------------------------------------------------------------------------------- /addon/globalPlugins/resourceMonitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/globalPlugins/resourceMonitor/__init__.py -------------------------------------------------------------------------------- /addon/globalPlugins/resourceMonitor/connect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/globalPlugins/resourceMonitor/connect.wav -------------------------------------------------------------------------------- /addon/globalPlugins/resourceMonitor/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/globalPlugins/resourceMonitor/disconnect.wav -------------------------------------------------------------------------------- /addon/globalPlugins/resourceMonitor/wlanapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/globalPlugins/resourceMonitor/wlanapi.py -------------------------------------------------------------------------------- /addon/locale/an/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/an/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ar/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ar/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/bg/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/bg/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/da/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/da/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/de/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/de/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/de_CH/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/de_CH/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/es/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/es/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/es_CO/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/es_CO/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/fa/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/fa/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/fi/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/fi/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/fr/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/fr/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/gl/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/gl/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/he/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/he/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/hr/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/hr/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/hu/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/hu/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/it/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/it/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ja/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ja/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ko/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ko/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ne/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ne/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/nl/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/nl/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/pl/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/pl/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/pt_BR/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/pt_BR/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/pt_PT/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/pt_PT/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ro/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ro/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ru/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ru/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/sk/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/sk/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/sl/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/sl/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/sr/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/sr/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/ta/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/ta/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/tr/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/tr/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/uk/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/uk/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/vi/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/vi/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/zh_CN/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/zh_CN/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /addon/locale/zh_TW/LC_MESSAGES/nvda.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/addon/locale/zh_TW/LC_MESSAGES/nvda.po -------------------------------------------------------------------------------- /manifest-translated.ini.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/manifest-translated.ini.tpl -------------------------------------------------------------------------------- /manifest.ini.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/manifest.ini.tpl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/readme.md -------------------------------------------------------------------------------- /sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/sconstruct -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/__init__.py -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/addon.py -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/docs.py -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/manifests.py -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/typings.py -------------------------------------------------------------------------------- /site_scons/site_tools/NVDATool/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/NVDATool/utils.py -------------------------------------------------------------------------------- /site_scons/site_tools/gettexttool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/site_scons/site_tools/gettexttool/__init__.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefaslungu/resourceMonitor/HEAD/style.css --------------------------------------------------------------------------------