├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── docker-publish.yml │ └── docker.yml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── ReloadExample.gif ├── dockerfile.amd64 ├── dockerfile.arm64 ├── download_obsdian.py └── root ├── defaults ├── autostart ├── menu.xml └── startwm.sh └── etc └── cont-init.d ├── 50-config └── 56-openboxcopy /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/README.md -------------------------------------------------------------------------------- /assets/ReloadExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/assets/ReloadExample.gif -------------------------------------------------------------------------------- /dockerfile.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/dockerfile.amd64 -------------------------------------------------------------------------------- /dockerfile.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/dockerfile.arm64 -------------------------------------------------------------------------------- /download_obsdian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/download_obsdian.py -------------------------------------------------------------------------------- /root/defaults/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/root/defaults/autostart -------------------------------------------------------------------------------- /root/defaults/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/root/defaults/menu.xml -------------------------------------------------------------------------------- /root/defaults/startwm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/root/defaults/startwm.sh -------------------------------------------------------------------------------- /root/etc/cont-init.d/50-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/root/etc/cont-init.d/50-config -------------------------------------------------------------------------------- /root/etc/cont-init.d/56-openboxcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraintoByte/obsidian-remote/HEAD/root/etc/cont-init.d/56-openboxcopy --------------------------------------------------------------------------------