From 1631b2663616bd91a2c8240cf78d2ab2c248cb48 Mon Sep 17 00:00:00 2001 From: noah Date: Sun, 15 Apr 2012 01:32:40 -0500 Subject: [PATCH] fixing wrong escapes --- font | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font b/font index 2153019..114dcec 100755 --- a/font +++ b/font @@ -66,7 +66,7 @@ sub change_size $self->{term}->resource("boldFont", $font_resized_bold); # Emit escape sequence to change fonts in rxvt runtime - $self->{term}->cmd_parse("\033]50;" . $font_resized . "\007"); + $self->{term}->cmd_parse("\e]710;" . $font_resized . "\007"); # Persist the changes to xrdb system("xrdb -load " . X_RESOURCES);