├── .jshintignore ├── .babelrc ├── icons ├── darwin │ ├── icon.icns │ ├── icon-setup.icns │ ├── background-setup.png │ ├── icon-tray-Template.png │ └── icon-tray-Template@2x.png └── linux │ ├── 16x16.png │ ├── 24x24.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 64x64.png │ ├── 96x96.png │ ├── icon.png │ ├── 128x128.png │ ├── 256x256.png │ ├── 512x512.png │ ├── 1024x1024.png │ ├── icon-setup.png │ └── icon-tray.png ├── app ├── fonts │ ├── arial-black.eot │ ├── arial-black.ttf │ └── arial-black.woff ├── images │ ├── icon-window-visible-Template.png │ ├── icon-launch-on-startup-Template.png │ ├── icon-window-visible-Template@2x.png │ └── icon-launch-on-startup-Template@2x.png ├── html │ └── main.html ├── scripts │ ├── main │ │ ├── services │ │ │ ├── power-service.js │ │ │ ├── debug-service.js │ │ │ ├── notification-service.js │ │ │ ├── messenger-service.js │ │ │ └── updater-service.js │ │ ├── components │ │ │ └── application.js │ │ └── managers │ │ │ └── configuration-manager.js │ └── renderer │ │ └── main.js ├── styles │ └── styles.css └── vendor │ └── glitch.js ├── resources ├── graphics │ ├── icon.png │ ├── icon-tray.psd │ ├── icon-setup.png │ ├── ecorp-wallpaper.jpg │ └── icon-tray-opaque.svg └── screenshots │ ├── screenshot-linux-1.gif │ ├── screenshot-macos-1.gif │ ├── screenshot-macos-2.gif │ └── screenshot-macos-3.gif ├── .editorconfig ├── .gitignore ├── RELEASENOTES.md ├── .jshintrc ├── RELEASENOTES.json ├── .npmignore ├── bin └── cli.js ├── lib ├── required-count.js ├── platform-helper.js ├── language.js ├── is-env.js ├── releasenotes.js ├── localsetup.js ├── dom-helper.js ├── build.js ├── deploy.js └── logger.js ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── ISSUE_TEMPLATE.md └── CONTRIBUTING.md ├── .appveyor.yml ├── .travis.yml ├── .jscsrc ├── CONTRIBUTING.md ├── gulpfile.babel.js ├── package.json ├── LICENSE.md └── README.md /.jshintignore: -------------------------------------------------------------------------------- 1 | resources/** -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["electron"] 3 | } 4 | -------------------------------------------------------------------------------- /icons/darwin/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/darwin/icon.icns -------------------------------------------------------------------------------- /icons/linux/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/16x16.png -------------------------------------------------------------------------------- /icons/linux/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/24x24.png -------------------------------------------------------------------------------- /icons/linux/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/32x32.png -------------------------------------------------------------------------------- /icons/linux/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/48x48.png -------------------------------------------------------------------------------- /icons/linux/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/64x64.png -------------------------------------------------------------------------------- /icons/linux/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/96x96.png -------------------------------------------------------------------------------- /icons/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/icon.png -------------------------------------------------------------------------------- /icons/linux/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/128x128.png -------------------------------------------------------------------------------- /icons/linux/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/256x256.png -------------------------------------------------------------------------------- /icons/linux/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/512x512.png -------------------------------------------------------------------------------- /app/fonts/arial-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/fonts/arial-black.eot -------------------------------------------------------------------------------- /app/fonts/arial-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/fonts/arial-black.ttf -------------------------------------------------------------------------------- /app/fonts/arial-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/fonts/arial-black.woff -------------------------------------------------------------------------------- /icons/linux/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/1024x1024.png -------------------------------------------------------------------------------- /icons/linux/icon-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/icon-setup.png -------------------------------------------------------------------------------- /icons/linux/icon-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/linux/icon-tray.png -------------------------------------------------------------------------------- /resources/graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/graphics/icon.png -------------------------------------------------------------------------------- /icons/darwin/icon-setup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/darwin/icon-setup.icns -------------------------------------------------------------------------------- /resources/graphics/icon-tray.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/graphics/icon-tray.psd -------------------------------------------------------------------------------- /icons/darwin/background-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/darwin/background-setup.png -------------------------------------------------------------------------------- /resources/graphics/icon-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/graphics/icon-setup.png -------------------------------------------------------------------------------- /icons/darwin/icon-tray-Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/darwin/icon-tray-Template.png -------------------------------------------------------------------------------- /icons/darwin/icon-tray-Template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/icons/darwin/icon-tray-Template@2x.png -------------------------------------------------------------------------------- /resources/graphics/ecorp-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/graphics/ecorp-wallpaper.jpg -------------------------------------------------------------------------------- /app/images/icon-window-visible-Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/images/icon-window-visible-Template.png -------------------------------------------------------------------------------- /resources/screenshots/screenshot-linux-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/screenshots/screenshot-linux-1.gif -------------------------------------------------------------------------------- /resources/screenshots/screenshot-macos-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/screenshots/screenshot-macos-1.gif -------------------------------------------------------------------------------- /resources/screenshots/screenshot-macos-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/screenshots/screenshot-macos-2.gif -------------------------------------------------------------------------------- /resources/screenshots/screenshot-macos-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/resources/screenshots/screenshot-macos-3.gif -------------------------------------------------------------------------------- /app/images/icon-launch-on-startup-Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/images/icon-launch-on-startup-Template.png -------------------------------------------------------------------------------- /app/images/icon-window-visible-Template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/images/icon-window-visible-Template@2x.png -------------------------------------------------------------------------------- /app/images/icon-launch-on-startup-Template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidneys/live-wallpaper-ecorp/HEAD/app/images/icon-launch-on-startup-Template@2x.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | 15 | [*.yml] 16 | indent_size = 2 17 | 18 | [package.json] 19 | indent_size = 2 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # BASELINE 2 | # macOS 3 | .DS_Store 4 | 5 | # Logs 6 | logs 7 | *.log 8 | 9 | # Temporary 10 | temp 11 | tmp 12 | 13 | # Caches 14 | .cache 15 | cache 16 | .sass-cache 17 | 18 | # JetBrains 19 | .idea 20 | *.sln.iml 21 | 22 | # VSCode 23 | .vscode 24 | 25 | # Compiled 26 | build 27 | 28 | # Dependencies 29 | node_modules 30 | jspm_packages 31 | bower_components 32 | -------------------------------------------------------------------------------- /app/html/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
4 | Animated Wallpaper featuring a glitched E-Corp company logo,
5 | Known as Evil Corp from Mr. Robot.
6 | 
7 | Not affiliated with USA Network, Anonymous Content, Universal Cable Productions or NBC Universal Television Distribution.
8 |