Refactor ueberzug (#1614)

The previous way ueberzug was used is now deprecated.
This commit is contained in:
Ben Lönnqvist 2020-11-24 17:30:55 +02:00 committed by GitHub
parent d76d92f6b8
commit d4f6abf1a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions

View File

@ -4327,15 +4327,14 @@ display_image() {
if [ "$wait" = true ];then if [ "$wait" = true ];then
wait=false; wait=false;
else else
source "$(ueberzug library)" ueberzug layer --parser bash 0< <(
ImageLayer 0< <( declare -Ap ADD=(\
ImageLayer::add\ [action]="add"\
['identifier']="neofetch"\ [identifier]="neofetch"\
['x']="$xoffset" ['y']="$yoffset"\ [x]=$xoffset [y]=$yoffset\
['max_width']="$((width / font_width))"\ [path]=$image\
['max_height']="$((height / font_height))"\ )
['path']="$image"; read -rs
read -rs;
) )
fi fi
;; ;;