├── .github └── workflows │ └── container-image.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── entrypoint.sh ├── entrypoint_user.sh ├── sway └── config └── wayvnc └── config /.github/workflows/container-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/.github/workflows/container-image.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /entrypoint_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/entrypoint_user.sh -------------------------------------------------------------------------------- /sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/sway/config -------------------------------------------------------------------------------- /wayvnc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanlensky/swayvnc-chrome/HEAD/wayvnc/config --------------------------------------------------------------------------------