UNPKG

wallchpaper

Version:

Change wallpaper after an adjustable time

13 lines (8 loc) 338 B
import { homedir } from 'os' import { join } from 'path' const configDir = homedir() const configFile = '.wallchpaper.js' const defaultConfigFile = '_default.js' const configPath = join(configDir, configFile) const defaultConfigPath = join(__dirname, defaultConfigFile) export { configFile, configDir, configPath, defaultConfigPath }