[zsh] tfont: do not echo newline

This commit is contained in:
Simon Bruder 2018-10-29 12:58:36 +00:00
parent 28f3e0220c
commit 662c103454
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

@ -64,7 +64,7 @@ function tfont() {
(
[ -z "$1" ] && font="Terminess Powerline" || font="$1"
[ -z "$2" ] && fontsize=18 || fontsize="$2"
echo -e "\033]710;xft:$font:pixelsize=$fontsize\007"
echo -en "\033]710;xft:$font:pixelsize=$fontsize\007"
)
}