UNPKG

wallpaper

Version:
10 lines (7 loc) 229 B
import {commandExists, execFile} from '../util.js'; export async function isAvailable() { return commandExists('pcmanfm'); } export async function set(imagePath) { await execFile('pcmanfm', ['--set-wallpaper', imagePath]); }