8 lines
187 B
Bash
Executable File
8 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Overwrite wallpaper with new image if provided
|
|
[ -n "$1" ] && cp "$1" "$HOME/pictures/wallpaper.jpg"
|
|
|
|
# Set wallpaper
|
|
feh --no-fehbg --bg-fill "$HOME/pictures/wallpaper.jpg"
|