A simple desktop photo frame
  • JavaScript 95.6%
  • HTML 4.4%
Find a file
2017-01-26 22:51:48 -06:00
lib Updated license and README. Added some basic configurability. 2017-01-26 22:51:48 -06:00
.gitignore initial commit 2017-01-26 21:59:33 -06:00
index.html Updated license and README. Added some basic configurability. 2017-01-26 22:51:48 -06:00
LICENSE.md Updated license and README. Added some basic configurability. 2017-01-26 22:51:48 -06:00
main.js Updated license and README. Added some basic configurability. 2017-01-26 22:51:48 -06:00
package.json initial commit 2017-01-26 21:59:33 -06:00
README.md Updated license and README. Added some basic configurability. 2017-01-26 22:51:48 -06:00
renderer.js initial commit 2017-01-26 21:59:33 -06:00
sandbox.js initial commit 2017-01-26 21:59:33 -06:00

electron-photo-frame

A simple, desktop photo frame for displaying a random slideshow.

NOTE: This is extremely beta. I just wanted this for myself, so quickly spun something together.

Current Supported Repositories

  • Google Photos (Picasa Web API)

To Use

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/robbynshaw/electron-photo-frame.git
# Go into the repository
cd electron-quick-start
# Install dependencies
npm install

The configuration is currently hardcoded, so you will need to edit the first couple lines of main.js with your google user id and the length of time the photos should be displayed.

// Google User ID
const userID = '105272298552335144033'
// 5 minute display time
const interval = 5 * 60 * 1000
# Run the app
npm start

License MIT