From 662c103454ad53b34bf19a72b2a693919fd74df5 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 29 Oct 2018 12:58:36 +0000 Subject: [PATCH] [zsh] tfont: do not echo newline --- home/.zshrc.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.zshrc.local b/home/.zshrc.local index 3065e71..94448b1 100644 --- a/home/.zshrc.local +++ b/home/.zshrc.local @@ -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" ) }