UNPKG

wallpaper

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