您的位置:首页 > 其它

Ubuntu 桌面的一些设置

2009-06-12 15:53 267 查看
原文地址:http://dienbng.ycool.com/post.1977418.html

一:桌面的设置

Alt+F2 后输入 gconf-editor,运行后,

1) 在左边的栏中找到 apps-> nautilus-> desktop 分支,我们就可以看见桌面设置的选项了

选项中 后面为 _icon_name的表示要改成什么样的名字来在桌面上显示

后面为 _icon_visib的表示是否在桌面上显示

PS:打开gconf-editor后可以在左侧输入开头的字母进行查找,gconf-editor是个类型于配置注册表的regedit

例如:

如果computer_icon_name 值为 My Computer,那么桌面上显示的我的电脑的名字就是 My Computer

computer_icon_visib 值为true的话,就会在桌面显示你的电脑图标题

2)在左边的栏中找到 apps->gedit-2->preferences->editor,在font分支中,把use_default_font选 上,这样看文档就比较舒服点,没有原来的那么大了,在save分支中,把 create_backup_copy 设为FALSE,就是不要打勾(新手最好还是设置为True)

3) 关联ALT+CTRL+Delete

找到apps->metacity,在global_keybingdings中的run_command_9设置为:<Control><Alt>Delete

然后将keybinding_commands中的command_9设置为:gnome-system-monitor

这样按下Alt+Ctrl+Delete后就可以查看系统使用情况了

PS:前面的操作你也可以在终端中输入命令:

代码:

gconftool-2 -t bool --set /apps/nautilus/desktop/computer_icon_visible "True"

gconftool-2 -t bool --set /apps/nautilus/desktop/documents_icon_visible "True"

gconftool-2 -t bool --set /apps/nautilus/desktop/home_icon_visible "True"

gconftool-2 -t bool --set /apps/nautilus/desktop/network_icon_visible "True"

gconftool-2 -t bool --set /apps/nautilus/desktop/volumes_visible "False"

gconftool-2 -t bool --set /apps/gedit-2/preferences/editor/font/use_default_font "True"

gconftool-2 -t bool --set /apps/gedit-2/preferences/editor/save/create_backup_copy "False"

gconftool-2 -t str --set /apps/metacity/global_keybindings/run_command_9 "<Control><Alt>Delete"

gconftool-2 -t str --set /apps/metacity/keybinding_commands/command_9 "gnome-system-monitor"

gconftool-2的用法其实用来也简单:

-t, --type=int|bool|float|string|list|pair,指明要更改的键是什么类型的

--set 表示要设置哪个键,这个键字符串可以在gconf-editor中选中那个项后,Ctrl+C 就可以得到了

二:一些基本技巧

1. Ctrl+Alt+Backspace可以重启X,就不必点 Quit..->Logout了,你也可以关闭它,WIKI中有这个设置
http://wiki.ubuntu.org.cn/%E7%A6%81%E7%94%A8Ctrl%2BAlt%2BBackspace%E9%87%8D%E5%90%AFX?highlight=%28Alt%29
#

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup

sudo gedit /etc/X11/xorg.conf

# 在文件末尾添加下列几行

Section "ServerFlags"

Option "DontZap" "yes"

EndSection

2.ALT+F2,运行一个提示框,你输入程序名称后就可以运行这个程序了,和WINDOWS的run很像

3.ALT+F1,这个组合是打开Applications菜单的

4.截屏幕可以用print screen,截活动窗口可用Alt+Print Screen,如果你要象QQ那样截图的话,可以安装beryl,在berylsettings中选中screenshot选中,然后按 <Control><Super>Button1,super键就是显示WINDOWS菜单的那个键,Button1就是鼠标左 键,然后截图就可以了,还有一种方法就是使用scrot程序进行截图,可以达到定时截图的功能,网上有很多的简介
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: