Merge pull request #1372 from kidonng/plasma-wallpaper

Get wallpaper for Plasma desktop
This commit is contained in:
dylan 2019-12-23 11:36:57 +00:00 committed by GitHub
commit 8ef15466fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -3746,6 +3746,11 @@ END
image="$(decode_url "$image")"
;;
"Plasma"*)
image="${XDG_CONFIG_HOME}/plasmarc"
image="$(awk -F '=' '$1 == "usersWallpapers" { print $2 }' "$image")"
;;
*)
if type -p feh >/dev/null && [[ -f "${HOME}/.fehbg" ]]; then
image="$(awk -F\' '/feh/ {printf $(NF-1)}' "${HOME}/.fehbg")"