├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _static ├── .gitkeep ├── book-pyqt5.png ├── hello_logo.png └── theme_overrides.css ├── _templates ├── .gitkeep └── epub-cover.html ├── conf.py ├── developer ├── acknowledgements.md ├── application-bundles.md ├── applications.md ├── architecture.md ├── base.md ├── binary-compatibility.md ├── boot.md ├── building.md ├── contact.md ├── contributing.md ├── developer-tools.md ├── distributions.md ├── filer-context-menus.md ├── geom_rowr.md ├── graphics.md ├── linux.md ├── localization.md ├── man.md ├── menu.md ├── midi.md ├── monkey-patch.md ├── ports.md ├── rpi.md ├── specifications.md ├── tracing.md └── ux-guidelines.md ├── index.md ├── make.sh ├── requirements.txt ├── reviewer └── guide.md └── user ├── components.md ├── components ├── applications.md ├── applications │ ├── falkon.md │ └── iridium.md ├── autostart.md ├── filesystems.md ├── preferences.md ├── preferences │ ├── boot-environments.md │ ├── desktop.md │ ├── keyboard.md │ ├── sharing.md │ ├── shortcuts.md │ └── wireless-networks.md ├── system.md ├── system │ ├── dock.md │ ├── filer.md │ ├── launch.md │ └── menu.md ├── utilities.md ├── utilities │ ├── calculator.md │ ├── calendar.md │ ├── create-live-media.md │ ├── hardware-probe.md │ ├── install.md │ ├── mountarchive.md │ ├── remote-assistance.md │ ├── sticky-notes.md │ └── update.md └── windows.md ├── feedback.md ├── getting-started.md └── troubleshooting.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[c|o] 3 | *.swp 4 | /_build 5 | /doctrees 6 | .venv/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/README.md -------------------------------------------------------------------------------- /_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_static/book-pyqt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/_static/book-pyqt5.png -------------------------------------------------------------------------------- /_static/hello_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/_static/hello_logo.png -------------------------------------------------------------------------------- /_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/_static/theme_overrides.css -------------------------------------------------------------------------------- /_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_templates/epub-cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/_templates/epub-cover.html -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/conf.py -------------------------------------------------------------------------------- /developer/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/acknowledgements.md -------------------------------------------------------------------------------- /developer/application-bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/application-bundles.md -------------------------------------------------------------------------------- /developer/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/applications.md -------------------------------------------------------------------------------- /developer/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/architecture.md -------------------------------------------------------------------------------- /developer/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/base.md -------------------------------------------------------------------------------- /developer/binary-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/binary-compatibility.md -------------------------------------------------------------------------------- /developer/boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/boot.md -------------------------------------------------------------------------------- /developer/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/building.md -------------------------------------------------------------------------------- /developer/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/contact.md -------------------------------------------------------------------------------- /developer/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/contributing.md -------------------------------------------------------------------------------- /developer/developer-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/developer-tools.md -------------------------------------------------------------------------------- /developer/distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/distributions.md -------------------------------------------------------------------------------- /developer/filer-context-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/filer-context-menus.md -------------------------------------------------------------------------------- /developer/geom_rowr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/geom_rowr.md -------------------------------------------------------------------------------- /developer/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/graphics.md -------------------------------------------------------------------------------- /developer/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/linux.md -------------------------------------------------------------------------------- /developer/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/localization.md -------------------------------------------------------------------------------- /developer/man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/man.md -------------------------------------------------------------------------------- /developer/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/menu.md -------------------------------------------------------------------------------- /developer/midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/midi.md -------------------------------------------------------------------------------- /developer/monkey-patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/monkey-patch.md -------------------------------------------------------------------------------- /developer/ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/ports.md -------------------------------------------------------------------------------- /developer/rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/rpi.md -------------------------------------------------------------------------------- /developer/specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/specifications.md -------------------------------------------------------------------------------- /developer/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/tracing.md -------------------------------------------------------------------------------- /developer/ux-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/developer/ux-guidelines.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/index.md -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/make.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /reviewer/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/reviewer/guide.md -------------------------------------------------------------------------------- /user/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components.md -------------------------------------------------------------------------------- /user/components/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/applications.md -------------------------------------------------------------------------------- /user/components/applications/falkon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/applications/falkon.md -------------------------------------------------------------------------------- /user/components/applications/iridium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/applications/iridium.md -------------------------------------------------------------------------------- /user/components/autostart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/autostart.md -------------------------------------------------------------------------------- /user/components/filesystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/filesystems.md -------------------------------------------------------------------------------- /user/components/preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences.md -------------------------------------------------------------------------------- /user/components/preferences/boot-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/boot-environments.md -------------------------------------------------------------------------------- /user/components/preferences/desktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/desktop.md -------------------------------------------------------------------------------- /user/components/preferences/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/keyboard.md -------------------------------------------------------------------------------- /user/components/preferences/sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/sharing.md -------------------------------------------------------------------------------- /user/components/preferences/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/shortcuts.md -------------------------------------------------------------------------------- /user/components/preferences/wireless-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/preferences/wireless-networks.md -------------------------------------------------------------------------------- /user/components/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/system.md -------------------------------------------------------------------------------- /user/components/system/dock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/system/dock.md -------------------------------------------------------------------------------- /user/components/system/filer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/system/filer.md -------------------------------------------------------------------------------- /user/components/system/launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/system/launch.md -------------------------------------------------------------------------------- /user/components/system/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/system/menu.md -------------------------------------------------------------------------------- /user/components/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities.md -------------------------------------------------------------------------------- /user/components/utilities/calculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/calculator.md -------------------------------------------------------------------------------- /user/components/utilities/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/calendar.md -------------------------------------------------------------------------------- /user/components/utilities/create-live-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/create-live-media.md -------------------------------------------------------------------------------- /user/components/utilities/hardware-probe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/hardware-probe.md -------------------------------------------------------------------------------- /user/components/utilities/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/install.md -------------------------------------------------------------------------------- /user/components/utilities/mountarchive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/mountarchive.md -------------------------------------------------------------------------------- /user/components/utilities/remote-assistance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/remote-assistance.md -------------------------------------------------------------------------------- /user/components/utilities/sticky-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/sticky-notes.md -------------------------------------------------------------------------------- /user/components/utilities/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/utilities/update.md -------------------------------------------------------------------------------- /user/components/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/components/windows.md -------------------------------------------------------------------------------- /user/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/feedback.md -------------------------------------------------------------------------------- /user/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/getting-started.md -------------------------------------------------------------------------------- /user/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloSystem/docs/HEAD/user/troubleshooting.md --------------------------------------------------------------------------------