wallsplash
Version:
Set a beutiful 4k background in one command
11 lines (10 loc) • 370 B
JavaScript
const { exec } = require("child_process");
console.log(`☕ Downloading a new wallpaper...`);
exec("npx wallpaper-cli https://source.unsplash.com/random/3840x2160", (error, stdout, stderr) => {
if (error) {
console.log(`error: ${error.message}`);
return;
}
console.log(`✨ Enjoy your new background ✨`);
});