UNPKG
wallpaper
Version:
latest (7.3.1)
7.3.1
7.3.0
7.2.1
7.2.0
7.1.0
7.0.0
6.1.1
6.1.0
6.0.0
5.0.1
5.0.0
4.4.2
4.4.1
4.4.0
4.3.0
4.2.0
4.1.0
4.0.0
3.0.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.1.0
1.0.0
Manage the desktop wallpaper
github.com/sindresorhus/wallpaper
sindresorhus/wallpaper
wallpaper
/
source
/
linux
/
background-managers
/
feh.js
10 lines
(7 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{commandExists, execFile}
from
'../util.js'
;
export
async
function
isAvailable
(
) {
return
commandExists
(
'feh'
); }
export
async
function
set
(
imagePath
) {
await
execFile
(
'feh'
, [
'--bg-fill'
, imagePath]); }