linux 怎么修改gnome-terminal 打开时默认的大小???
大侠们注意不是xterm终端,更非更改此文件/usr/share/vte/termcap/xterm能解决,在终端配置选项里自定义命令中加它gnome-terminal-...
大侠们注意不是xterm终端,更非更改此文件/usr/share/vte/termcap/xterm能解决,在终端配置选项里自定义命令中加它gnome-terminal --geometry=100x27也只能双击它出现100X27的效果,我想要的效果是鼠标右击.打开终端显示的大小是自己设置的,以上方法都没能实现,大家还有招么??
展开
4个回答
展开全部
选择 Edit -> Profiles->use custom default terminal size,修改终端大小就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
侧写首选项居然没有……
下面说的宽度高度都是“字符数”。而不是像素,别试着写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”
也许没有这几个,没有就手动输入。
<?xml version="1.0"?>
<gconf>
……………………
<entry name="default_size_rows" mtime="1327065607" type="int" value="高度"/>
<entry name="default_size_columns" mtime="1327065607" type="int" value="宽度"/>
<entry name="use_custom_default_size" mtime="1327065607" type="bool" value="true"/>
……………………
</gconf>
ps:mtime是啥我也不知到总之改不改没看出变化
下面说的宽度高度都是“字符数”。而不是像素,别试着写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”
也许没有这几个,没有就手动输入。
<?xml version="1.0"?>
<gconf>
……………………
<entry name="default_size_rows" mtime="1327065607" type="int" value="高度"/>
<entry name="default_size_columns" mtime="1327065607" type="int" value="宽度"/>
<entry name="use_custom_default_size" mtime="1327065607" type="bool" value="true"/>
……………………
</gconf>
ps:mtime是啥我也不知到总之改不改没看出变化
更多追问追答
追问
朋友,~/.gconf/apps/gnome-terminal/profiles/Default/%gconf.xml这文件我有,的确跟这文件有关,这配置文件出现了问鼎PL细上海宋Uni(终端字体我选择的问鼎PL细上海宋Uni)但是遗憾的是没效果,我又试着给它加上结束符还是不行。
追答
找了一台RHEL5的机子看了下…………5.*确实木有自定义终端默认大小的功能………………
我这机子是6.*的才有…………
文件夹右键菜单里的那个“在终端中打开”是插件nautilus-open-terminal做的。
大概看了下代码没发现怎么传参数进去…………
于是不会了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
原理: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。
执行:
$ 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。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询