linux 怎么修改gnome-terminal 打开时默认的大小???

2025-01-05 10:46:36
推荐回答(4个)
回答1:

我在ubuntu中的gnome-terminal  中打开“编辑”-“首选项”-“使用默认大小”   你试试这个?

回答2:

选择 Edit -> Profiles->use custom default terminal size,修改终端大小就可以了

回答3:

侧写首选项居然没有……
下面说的宽度高度都是“字符数”。而不是像素,别试着写800x600……

那就打开gconf-editor
找到
/apps/gnome-terminal/profiles/Default/default_size_columns (宽度

/apps/gnome-terminal/profiles/Default/default_size_rows (高度
还有
/apps/gnome-terminal/profiles/Profile0/use_custom_default_size (打勾使上面两个生效
其中的Default也可能是别的名字,自己看着来。

要是没有dconf-editor的话最好装一个……找不到的话就用下面的办法

打开家目录,找到
~/.gconf/apps/gnome-terminal/profiles/Default/%gconf.xml (这路径跟上面的基本一样……要是没找到这个文件那我就不会了

打开它,搜索“default_size_columns”和“default_size_rows”以及“use_custom_default_size”
也许没有这几个,没有就手动输入。



……………………



……………………


ps:mtime是啥我也不知到总之改不改没看出变化

回答4:

原理:Ubuntu下的终端仿真器默认为:gnome-terminal,通过执行gnome-terminal命令,即可打开终端仿真器。--geometry参数用来修改启动的行列数与窗口坐标。
执行:
$ gnome-terminal --help-window-options
Usage:
gnome-terminal [OPTION...]
Window options; if used before the first --window or --tab argument, sets the default for all windows:
--show-menubar Turn on the menubar
--hide-menubar Turn off the menubar
--maximize Maximise the window
--full-screen Full-screen the window
--geometry=GEOMETRY Set the window size; for example: 80x24, or 80x24+200+200 (ROWSxCOLS+X+Y)
--role=ROLE Set the window role
--active Set the last specified tab as the active one in its window
修改步骤:
1. 打开一个终端仿真器,将位置和大小调整到希望启动时默认的位置;
2. 执行xwininfo,记下输出的最后一行;
3. 创建一个Luncher;
4. 在Command栏中填写gnome-terminal --geometry=90x46+650+0(可自己调整);
5. DONE。