有谁知道如何调整 Ubuntu 中 shell 窗口的默认宽度,这样我就不必每次打开它时都重新调整其大小?
答案1
如果您指的是gnome-terminal
,您可以转到菜单项编辑->配置文件首选项,选中“使用自定义默认终端大小”并输入您喜欢的字符尺寸。
答案2
将其添加到~/.Xresources(当然,您想要什么尺寸都可以):
XTerm*VT100.geometry: 96x68
然后将其添加到~/.xinitrc:
xrdb -merge $HOME/.Xresources
这应该足够了。遗憾的是,似乎需要注销并重新登录才能看到更改。
答案3
使用,选择默认配置文件,然后。在下一个窗口中的常规选项卡中gnome-terminal
,有一个选择窗口大小的选项。您必须打开一个新的终端窗口才能看到它的工作。Edit->Profile...
edit
答案4
您可以使用脚本自动执行此操作:
gconftool -s /apps/gnome-terminal/profiles/Default/use_custom_default_size -t bool true
gconftool -s /apps/gnome-terminal/profiles/Default/default_size_rows -t int 60
gconftool -s /apps/gnome-terminal/profiles/Default/default_size_columns -t int 220
gconftool -s /apps/gnome-terminal/profiles/Default/scrollback_lines -t int 5000
gconftool -s /apps/gnome-terminal/profiles/Default/background_type -t string transparent
...