summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmdkapplet4
1 files changed, 4 insertions, 0 deletions
diff --git a/mdkapplet b/mdkapplet
index 3d9ca953..65dfe6e0 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -40,6 +40,10 @@ use mdkonline;
use Gtk2::TrayIcon;
use Gtk2::NotificationBubble;
+# prevent urpmi.update to run /usr/bin/resize through Term::ReadKey->GetTerminalSize() when xterm is installed
+# (which freeze the desktop):
+$ENV{COLUMNS} = 80;
+$ENV{LINES} = 25;
# POSIX unmasks the sigprocmask properly
my $sigset = POSIX::SigSet->new;