A simple desktop photo frame
- JavaScript 95.6%
- HTML 4.4%
| lib | ||
| .gitignore | ||
| index.html | ||
| LICENSE.md | ||
| main.js | ||
| package.json | ||
| README.md | ||
| renderer.js | ||
| sandbox.js | ||
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