├── .editorconfig ├── .enyoconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml └── workflows │ ├── build-binaries.yml │ ├── build.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appinfo.json ├── assets ├── bubble.png ├── icon.svg ├── icon130.png ├── icon160.png ├── icon80.png ├── splash.png └── splash.svg ├── babel.config.json ├── eslint.config.mjs ├── frontend ├── App.js ├── baseurl.js ├── configutils.js ├── index.js └── views │ ├── BrowserPanel.js │ ├── DetailsPanel.css │ ├── DetailsPanel.js │ ├── MainView.js │ └── SettingsPanel.js ├── lib └── .editorconfig ├── package.json ├── services ├── adapter.ts ├── bin │ ├── dropbear │ ├── remount-nosuids.sh │ ├── rsync │ ├── sampatcher.py │ ├── scp │ ├── sftp-server │ └── telnetd ├── buffer-shim.js ├── certs │ └── cacert-2024-03-11.pem ├── elevate-service.ts ├── fetch-wrapper.ts ├── jumpstart.sh ├── package.json ├── protocol.ts ├── run-js-service ├── service.ts ├── services.json ├── startup.sh └── webos-service-remote │ ├── execbus.js │ ├── index.js │ ├── message.js │ ├── service.js │ └── subscription.js ├── tools ├── build-binaries.sh ├── doas │ ├── Makefile │ └── doas.c ├── gen-manifest.js ├── install.sh ├── patches │ └── dropbear-2022.83-webos-v1.patch ├── rebuild-icons.sh └── sync-version.js ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.enyoconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.enyoconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/README.md -------------------------------------------------------------------------------- /appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/appinfo.json -------------------------------------------------------------------------------- /assets/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/bubble.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icon130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/icon130.png -------------------------------------------------------------------------------- /assets/icon160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/icon160.png -------------------------------------------------------------------------------- /assets/icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/icon80.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/assets/splash.svg -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/babel.config.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/App.js -------------------------------------------------------------------------------- /frontend/baseurl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/baseurl.js -------------------------------------------------------------------------------- /frontend/configutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/configutils.js -------------------------------------------------------------------------------- /frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/index.js -------------------------------------------------------------------------------- /frontend/views/BrowserPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/views/BrowserPanel.js -------------------------------------------------------------------------------- /frontend/views/DetailsPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/views/DetailsPanel.css -------------------------------------------------------------------------------- /frontend/views/DetailsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/views/DetailsPanel.js -------------------------------------------------------------------------------- /frontend/views/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/views/MainView.js -------------------------------------------------------------------------------- /frontend/views/SettingsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/frontend/views/SettingsPanel.js -------------------------------------------------------------------------------- /lib/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/lib/.editorconfig -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/package.json -------------------------------------------------------------------------------- /services/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/adapter.ts -------------------------------------------------------------------------------- /services/bin/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/dropbear -------------------------------------------------------------------------------- /services/bin/remount-nosuids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/remount-nosuids.sh -------------------------------------------------------------------------------- /services/bin/rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/rsync -------------------------------------------------------------------------------- /services/bin/sampatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/sampatcher.py -------------------------------------------------------------------------------- /services/bin/scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/scp -------------------------------------------------------------------------------- /services/bin/sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/sftp-server -------------------------------------------------------------------------------- /services/bin/telnetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/bin/telnetd -------------------------------------------------------------------------------- /services/buffer-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/buffer-shim.js -------------------------------------------------------------------------------- /services/certs/cacert-2024-03-11.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/certs/cacert-2024-03-11.pem -------------------------------------------------------------------------------- /services/elevate-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/elevate-service.ts -------------------------------------------------------------------------------- /services/fetch-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/fetch-wrapper.ts -------------------------------------------------------------------------------- /services/jumpstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/jumpstart.sh -------------------------------------------------------------------------------- /services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/package.json -------------------------------------------------------------------------------- /services/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/protocol.ts -------------------------------------------------------------------------------- /services/run-js-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/run-js-service -------------------------------------------------------------------------------- /services/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/service.ts -------------------------------------------------------------------------------- /services/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/services.json -------------------------------------------------------------------------------- /services/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/startup.sh -------------------------------------------------------------------------------- /services/webos-service-remote/execbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/webos-service-remote/execbus.js -------------------------------------------------------------------------------- /services/webos-service-remote/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/webos-service-remote/index.js -------------------------------------------------------------------------------- /services/webos-service-remote/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/webos-service-remote/message.js -------------------------------------------------------------------------------- /services/webos-service-remote/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/webos-service-remote/service.js -------------------------------------------------------------------------------- /services/webos-service-remote/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/services/webos-service-remote/subscription.js -------------------------------------------------------------------------------- /tools/build-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/build-binaries.sh -------------------------------------------------------------------------------- /tools/doas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/doas/Makefile -------------------------------------------------------------------------------- /tools/doas/doas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/doas/doas.c -------------------------------------------------------------------------------- /tools/gen-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/gen-manifest.js -------------------------------------------------------------------------------- /tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/install.sh -------------------------------------------------------------------------------- /tools/patches/dropbear-2022.83-webos-v1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/patches/dropbear-2022.83-webos-v1.patch -------------------------------------------------------------------------------- /tools/rebuild-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/rebuild-icons.sh -------------------------------------------------------------------------------- /tools/sync-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tools/sync-version.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/throwaway96/webos-homebrew-channel/HEAD/webpack.config.js --------------------------------------------------------------------------------