1.0.1 • Published 9 years ago

linux-wallpaper v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

linux-wallpaper Build Status

Get or set the desktop wallpaper on Linux

Install

$ npm install --save linux-wallpaper

Usage

var linuxWallpaper = require('linux-wallpaper');

linuxWallpaper.set('unicorn.jpg', function (err) {
	console.log('done');
});

linuxWallpaper.get(function (err, imagePath) {
	console.log(imagePath);
	//=> '/home/sindresorhus/unicorn.jpg'
});

API

.get(callback)

callback(error, imagePath)

Required
Type: function

imagePath

Type: string

Path to the current desktop wallpaper image.

.set(imagePath, callback)

imagePath

Required
Type: string

Path to the image to set as the desktop wallpaper.

CLI

See wallpaper.

License

MIT © Sindre Sorhus