UNPKG

wallchpaper

Version:

Change wallpaper after an adjustable time

17 lines 617 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const config_1 = require("./config/config"); const system_1 = require("./system"); const wallpaper_manager_1 = require("./manager/wallpaper.manager"); const app_1 = require("./app"); const system = new system_1.System(); const config = new config_1.Config(); config.setup(); const wallpaperManager = new wallpaper_manager_1.WallpaperManager(config.getConfig()); const app = new app_1.App(config, system, wallpaperManager); app.start(); process.on('SIGINT', () => { app.finish(); }); //# sourceMappingURL=index.js.map