8 lines
133 B
Bash
Executable file
8 lines
133 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
index="${2}"
|
|
wp_file="${HOME}/.wallpaper${index}"
|
|
rm -f "${wp_file}"
|
|
ln -s "${1}" "${wp_file}"
|
|
"${HOME}/.fehbg"
|