UNPKG

wallpaper

Version:
15 lines (12 loc) 271 B
import {commandExists, execFile} from '../util.js'; export async function isAvailable() { return commandExists('dcop'); } export async function set(imagePath) { await execFile('dcop', [ 'kdesktop', 'KBackgroundIface', 'setWallpaper', `${imagePath} 1`, ]); }