├── .babelrc ├── .editorconfig ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md ├── lock.yml ├── move.yml ├── no-response.yml └── stale.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md ├── README.zh_CN.md ├── _config.yml ├── appveyor.yml ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── screenshot.gif ├── src ├── index.ejs ├── main │ ├── adb │ │ └── index.js │ ├── index.dev.js │ ├── index.js │ └── scrcpy │ │ └── index.js ├── renderer │ ├── App.vue │ ├── assets │ │ ├── .gitkeep │ │ └── icons │ │ │ ├── 256x256.png │ │ │ ├── icon.icns │ │ │ └── icon.ico │ ├── components │ │ ├── components │ │ │ └── EditableCell.vue │ │ ├── dashboard │ │ │ ├── Configuration.vue │ │ │ └── Management.vue │ │ ├── layout │ │ │ ├── Footer.vue │ │ │ ├── Header.vue │ │ │ ├── Main.vue │ │ │ └── index.js │ │ └── menu │ │ │ ├── Menu.js │ │ │ ├── Tray.js │ │ │ └── index.js │ ├── directives │ │ ├── index.js │ │ └── waves │ │ │ ├── index.js │ │ │ ├── waves.css │ │ │ └── waves.js │ ├── lang │ │ ├── en.js │ │ ├── index.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── main.js │ ├── mixin │ │ ├── drag.js │ │ └── index.js │ ├── plugins │ │ ├── index.js │ │ ├── notify.js │ │ ├── openExternal.js │ │ └── store.js │ ├── router │ │ └── index.js │ ├── styles │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── scrollbar.scss │ │ └── variables.scss │ ├── utils │ │ └── regular │ │ │ └── index.js │ └── views │ │ ├── Dashboard.vue │ │ └── Layout.vue └── test │ └── execa.js └── static ├── .gitkeep └── icons ├── 16x16.png ├── 256x256.png ├── icon.icns └── icon.ico /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/README.md -------------------------------------------------------------------------------- /README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/README.zh_CN.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/_config.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/screenshot.gif -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/adb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/main/adb/index.js -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/scrcpy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/main/scrcpy/index.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/assets/icons/256x256.png -------------------------------------------------------------------------------- /src/renderer/assets/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/assets/icons/icon.icns -------------------------------------------------------------------------------- /src/renderer/assets/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/assets/icons/icon.ico -------------------------------------------------------------------------------- /src/renderer/components/components/EditableCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/components/EditableCell.vue -------------------------------------------------------------------------------- /src/renderer/components/dashboard/Configuration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/dashboard/Configuration.vue -------------------------------------------------------------------------------- /src/renderer/components/dashboard/Management.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/dashboard/Management.vue -------------------------------------------------------------------------------- /src/renderer/components/layout/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/layout/Footer.vue -------------------------------------------------------------------------------- /src/renderer/components/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/layout/Header.vue -------------------------------------------------------------------------------- /src/renderer/components/layout/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/layout/Main.vue -------------------------------------------------------------------------------- /src/renderer/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/layout/index.js -------------------------------------------------------------------------------- /src/renderer/components/menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/menu/Menu.js -------------------------------------------------------------------------------- /src/renderer/components/menu/Tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/menu/Tray.js -------------------------------------------------------------------------------- /src/renderer/components/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/components/menu/index.js -------------------------------------------------------------------------------- /src/renderer/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/directives/index.js -------------------------------------------------------------------------------- /src/renderer/directives/waves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/directives/waves/index.js -------------------------------------------------------------------------------- /src/renderer/directives/waves/waves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/directives/waves/waves.css -------------------------------------------------------------------------------- /src/renderer/directives/waves/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/directives/waves/waves.js -------------------------------------------------------------------------------- /src/renderer/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/lang/en.js -------------------------------------------------------------------------------- /src/renderer/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/lang/index.js -------------------------------------------------------------------------------- /src/renderer/lang/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/lang/zh_CN.js -------------------------------------------------------------------------------- /src/renderer/lang/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/lang/zh_TW.js -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/mixin/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/mixin/drag.js -------------------------------------------------------------------------------- /src/renderer/mixin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/mixin/index.js -------------------------------------------------------------------------------- /src/renderer/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/plugins/index.js -------------------------------------------------------------------------------- /src/renderer/plugins/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/plugins/notify.js -------------------------------------------------------------------------------- /src/renderer/plugins/openExternal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/plugins/openExternal.js -------------------------------------------------------------------------------- /src/renderer/plugins/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/plugins/store.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/styles/index.scss -------------------------------------------------------------------------------- /src/renderer/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/styles/mixin.scss -------------------------------------------------------------------------------- /src/renderer/styles/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/styles/scrollbar.scss -------------------------------------------------------------------------------- /src/renderer/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/styles/variables.scss -------------------------------------------------------------------------------- /src/renderer/utils/regular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/utils/regular/index.js -------------------------------------------------------------------------------- /src/renderer/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/views/Dashboard.vue -------------------------------------------------------------------------------- /src/renderer/views/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/renderer/views/Layout.vue -------------------------------------------------------------------------------- /src/test/execa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/src/test/execa.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/static/icons/16x16.png -------------------------------------------------------------------------------- /static/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/static/icons/256x256.png -------------------------------------------------------------------------------- /static/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/static/icons/icon.icns -------------------------------------------------------------------------------- /static/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/scrcpy-gui/HEAD/static/icons/icon.ico --------------------------------------------------------------------------------