From: Mark Wooding Date: Thu, 26 Mar 2009 19:05:32 +0000 (+0000) Subject: xinitrc: Update pterm width. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/e2b44bd95094df8ea713e4e86d2c8691d0a84d44?ds=sidebyside xinitrc: Update pterm width. Debian is now using a version of pterm linked against GTK2, which has a wider scroll bar. Update the width used in the layout computations. This will make layouts look slightly loose on systems which still have the old pterm, but I'll live with that. --- diff --git a/xinitrc b/xinitrc index 1de812b..1eed5ba 100755 --- a/xinitrc +++ b/xinitrc @@ -163,7 +163,7 @@ esac ## Terminal window measurements. case "$term" in - pterm) t_wd=503 t_lineht=13 t_vextra=23 geom=-geometry;; + pterm) t_wd=504 t_lineht=13 t_vextra=23 geom=-geometry;; Eterm) t_wd=504 t_lineht=13 t_vextra=23 geom=-g;; xterm) t_wd=507 t_lineht=13 t_vextra=27 geom=-geometry;; esac