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