8 lines
166 B
Bash
8 lines
166 B
Bash
|
# set specified file as a wallpaper.
|
||
|
wallpaper()
|
||
|
{
|
||
|
path_wallpaper=~/.local/share/backgrounds/background.jpg
|
||
|
cp "$1" $path_wallpaper
|
||
|
chmod 644 $path_wallpaper
|
||
|
}
|