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