From ef1da60cd4c275d4c55d3e61cdbb60884eebf270 Mon Sep 17 00:00:00 2001 From: JonathanKang Date: Fri, 16 May 2014 23:16:47 +0800 Subject: [PATCH 1/2] translated --- ...ustomize your Ubuntu desktop in 6 steps.md | 97 ------------------- 1 file changed, 97 deletions(-) delete mode 100644 sources/tech/How to customize your Ubuntu desktop in 6 steps.md diff --git a/sources/tech/How to customize your Ubuntu desktop in 6 steps.md b/sources/tech/How to customize your Ubuntu desktop in 6 steps.md deleted file mode 100644 index 33c651473b..0000000000 --- a/sources/tech/How to customize your Ubuntu desktop in 6 steps.md +++ /dev/null @@ -1,97 +0,0 @@ -JonathanKang is translating -How to customize your Ubuntu desktop in 6 steps -================================================================================ -![](http://www.muktware.com/wp-content/uploads/2014/05/ubuntu-customize-1.jpg) - -Ubuntu is a great Linux distribution for users who want an easy-to-use interface and is arguably the best distribution for a user new to the Linux world. Some side effects of this is that, in terms of interface and appearance, many arbitrary choices have been made for the user by Canonical, particularly in the form of the Unity desktop environment. - -These are not set in stone, however. Below are a few tips on how to feel more at home in Ubuntu. For a glimpse of some of the things you can customize in Ubuntu, you can see above what my desktop looks like using Unity in Ubuntu 14.04, compared to the default setup. - -Let’s break down what is needed to do this. - -### 1. Install the Unity Tweak Tool ### - -Before you can make any significant changes to the appearance of Ubuntu, you will have to install the [Unity Tweak Tool][1], This is a special settings manager for the Unity desktop environment, and allows you to implement things like alternate icon sets and themes. It can be downloaded from the Ubuntu software center, or if you prefer, from the terminal with the following commands: - - sudo apt-get install unity-tweak-tool - -If you are using Gnome desktop environment, then you might want to try the Gnome Tweak Tool, which can also can be installed from the Ubuntu software center or with the command - - sudo apt-get install gnome-tweak-tool - -### 2. Install a GTK theme ### - -There are many custom themes for Ubuntu, which affect the way applications and windows look. The theme I use is the Numix GTK+ theme. You can find out more about the Numix themes and icons at [http://numixproject.org/][2] . You can install the the Numix theme by opening the terminal and entering: - - sudo add-apt-repository ppa:numix/ppa - sudo apt-get update && sudo apt-get install numix-gtk-theme - -o enable the theme, open the Unity Tweak Tool and select “Theme”, located under the “Appearance” header and select the theme, which should now be an option listed under “Available Themes”. This process can be repeated for any other theme, provided the repository package name is known. Many themes are available for perusal at [Gnome-Look.org][3]. One very similar set of themes to Numix are available is Moka at [http://mokaproject.com/][4]. - -### 3. Install an icon set ### - -The icons used in the screenshot are also from Numix, the Numix Circle icons. These icons can be installed by entering into the terminal the commands: - - sudo apt-add-repository ppa:numix/ppa - sudo apt-get update - sudo apt-get install numix-icon-theme-circle - -To enable the icons, select “Icons” in the Unity Tweak Tool and highlight the icon set. Once again, this is possible for any of the multitudes of icon sets available. Moka also offers very nice icon sets that bring colorful, consistent design to your desktop. - -### 4. Install Conky system monitor ### - -Conky is a lightweight desktop system monitor. By itself, it is quite plain, but it is completely hackable, which opens the door to complete customization of the application, which can be used to display a variety of useful information. You can install Conky by with these commands - - sudo apt-get install conky conky-all - -You will also need to install Curl with the command - - sudo apt-get install curl - -The Conky theme shown in the screenshot is [Harmattan][5], which displays time, weather and system processes in 15 different themes. To install this theme, you can download the .zip file from [deviantART][6], then extract its contents. Move the .conky-weather folder (you may have to hit Ctrl + H to view these files) into the home folder, as well as the .conkyrc file from the folder containing the theme of your choice (the Harmattan theme is nicely organized into folders for different types of themes). There are [hundreds of themes][7] of Conky, and all you need to try them is to replace the .conkyrc file in the home folder with the .conkyrc file for that theme. - -### 5. Install some indicator applets ### - -There are many third-party indicator applets that you can use to monitor information on your desktop. There are applets for weather, system performance, and more. The ones I use are quite simple. Because weather and performance are already in Conky, I haven’t installed these, but you can install them by entering the following commands in the terminal: - - sudo apt-get install indicator-weather - sudo apt-get install indicator-multiload - -The two applets I use are the Keys Lock applet and the Touchpad controller, because my laptop does not have an indicator light for caps lock or the touchpad disable hotkey. You can install these with the commands - - sudo add-apt-repository ppa:tsbarnes/indicator-keylock - sudo add-apt-repository ppa:atareao/atareao - sudo apt-get update - sudo apt-get install indicator-keylock - sudo apt-get install touchpad-indicator - -You may have to re-login to your user in order to launch these applets. - -### 6. Get advanced with CompizConfig Settings Manager ### - -If Unity Tweak Tool is not powerful enough for you, you can try installing the [CompizConfig Settings Manager][8]. - -### Warning: ### - -CompizConfig may damage your system if the wrong settings are applied. Use with caution. You can enable settings hidden in all corners of Ubuntu, and you can install in from the Ubuntu Software Center or from the terminal with these commands: - - sudo apt-get install compiz compizconfig-settings-manager compiz-fusion-plugins-extra compiz-fusion-plugins-main compiz-plugins - -Your Ubuntu desktop is now supercharged! All of these steps have thousands of other options attached to them, so customizability is endless. Now go out and try them! - --------------------------------------------------------------------------------- - -via: http://www.muktware.com/2014/05/customize-ubuntu-desktop-6-steps/26750 - -译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) - -本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出 - -[1]:https://apps.ubuntu.com/cat/applications/unity-tweak-tool/ -[2]:http://numixproject.org/ -[3]:http://gnome-look.org/?xcontentmode=100 -[4]:http://mokaproject.com/ -[5]:http://zagortenay333.deviantart.com/art/Conky-Harmattan-426662366 -[6]:http://www.deviantart.com/art/Conky-Harmattan-426662366 -[7]:http://www.deviantart.com/?qh=§ion=&global=1&q=conky -[8]:https://apps.ubuntu.com/cat/applications/compizconfig-settings-manager/ From 56bafbe71d52e429d0d34ba8c72448f2e6bb70b6 Mon Sep 17 00:00:00 2001 From: JonathanKang Date: Fri, 16 May 2014 23:19:11 +0800 Subject: [PATCH 2/2] translated --- ...ustomize your Ubuntu desktop in 6 steps.md | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 translated/tech/How to customize your Ubuntu desktop in 6 steps.md diff --git a/translated/tech/How to customize your Ubuntu desktop in 6 steps.md b/translated/tech/How to customize your Ubuntu desktop in 6 steps.md new file mode 100644 index 0000000000..924a2492f7 --- /dev/null +++ b/translated/tech/How to customize your Ubuntu desktop in 6 steps.md @@ -0,0 +1,95 @@ +教你6步定制你的Ubuntu桌面 +================================================================================ +![](http://www.muktware.com/wp-content/uploads/2014/05/ubuntu-customize-1.jpg) +对于那些想要一个易于使用的界面的用户,Ubuntu是一个很好的Linux发行版,并且对于一个Linux新手也可以说是最好的Linux发行版。不过这产生了一些副作用,那就是,对于界面和外观,Canonical公司已经为用户做了很多设定,尤其是Unity桌面环境。 + +然而这些不是一成不变的。下面是一些关于怎样让你更加舒心地使用Ubuntu的技巧。看过上面的截图中我对Ubuntu的设定,你可以看到我的的Unity桌面,相比于默认设定的桌面有何不同。 + +下面让我们分步来实现定制Ubuntu桌面。 + +### 1. 安装Unity Tweak Tool ### + +在你能对Ubuntu外观做任何有效地修改之前,你不得不安装[Unity Tweak Tool][1]。这是一个Unity桌面环境下特殊设置管理软件,并且通过它你可以实现替换系统图标和主题。你可以从Ubuntu软件中心下载该软件,如果你更加偏爱terminal终端的话,你也可以使用下面的命令: + + sudo apt-get install unity-tweak-tool + +如果你正在使用Gnome桌面环境,那么你可能需要尝试Gnome Tweak Tool这款软件。你也可以从Ubuntu软件中心和使用以下命令来安装该软件: + + sudo apt-get install gnome-tweak-tool + +### 2. 安装GTK主题 ### + +对于Ubuntu有很多定制的主题,这些主题可以影响应用和窗口的外观。我正在使用的主题是Numix GTK+。你可以在[http://numixproject.org/][2]找到关于Numix主题和图标的更多信息。你可以通过打开终端并输入以下命令来安装Numix主题: + + sudo add-apt-repository ppa:numix/ppa + sudo apt-get update && sudo apt-get install numix-gtk-theme + +为了使该主题生效,我们需要打开Unity Tweak Tool,选择“外观标题”下的“主题”选项,然后在“已有主题”一栏中选择该主题。只要相应的软件仓库名字一直,对于其他主题,你就可以重复该过程来应用。你可以登陆[Gnome-Look.org][3]获得更多的主题。另一个和Numix主题很相似的主题是Moka,你可以在[http://mokaproject.com/][4]获得更多关于Moka主题的信息。 + +### 3. 安装图标 ### + +以上截图中使用的图标是来自Numix主题的Numix圆形图标。你可以通过在终端输入以下命令来安装该图标: + + sudo apt-add-repository ppa:numix/ppa + sudo apt-get update + sudo apt-get install numix-icon-theme-circle + +为了使该图标生效,我们需要在Unity Tweak Tool中选择“图标”选项,然后选择该图标集。再一次声明,这个方法对于任何图标集是可行的。Moka也提供给你的桌面带来多彩的、一致性设计的图标集。 + +### 4. 安装conky系统监视软件 ### + +Conky是一个轻量级桌面系统监视软件。该软件本身是非常简单的,不过它是可定制的,这样一来它就可以显示很多的有用的信息。你可以通过在终端输入以下命令来安装Conky: + + sudo apt-get install conky conky-all + +你将会需要curl这个软件,你可以通过以下这个命令来安装该软件: + + sudo apt-get install curl + +上面截图中使用的conky主题是[Harmattan][5],它可以以15种不同的样式来显示时间、天气、以及系统进程。要安装该主题,你可以从[deviantART][6]下载zip文件,然后解压。将.conky-weather文件夹和位于主题文件夹的.conkyrc文件(你可能需要按Ctrl+H来显示这些隐藏文件)移动到你的home文件夹。Conky有[很多的主题][7]。尝试这些主题,你所需要做的就是用所要使用主题的.conkyrc文件替换在home文件夹的.conkyrc文件。 + +### 5. 安装一些指示器程序 ### + +有很多第三方的指示器程序,通过这些程序你可以监视你的桌面信息,例如天气、系统性能等。我所使用的指示器程序相当简单。因为天气和系统性能已经在conky中显示,所以我没有安装这些指示器。不过你可以在终端输入以下命令来安装他们: + + sudo apt-get install indicator-weather + sudo apt-get install indicator-multiload + +我所使用的两个指示器程序是大小写指示程序以及触摸板控制器,这是因为我的笔记本没有大小写指示灯和控制触摸板开关的热键。你可以通过以下命令来安装这两个软件: + + sudo add-apt-repository ppa:tsbarnes/indicator-keylock + sudo add-apt-repository ppa:atareao/atareao + sudo apt-get update + sudo apt-get install indicator-keylock + sudo apt-get install touchpad-indicator + +你可能需要注销并重新登录来使用这些应用。 + +### 6. 通过Compiz设置管理器深度定制你的桌面 ### + +如果对于你来说Unity Tweak Tool不够强大,那么你可以尝试[Compiz设置管理器][8]. + +### 警告: ### + +如果错误的设置被应用的话,Compiz设置管理器可能会损害到你的系统。所以使用时要格外小心。你可以看到Ubuntu系统中隐藏的各种设置。你可以在Ubuntu软件中心获取该软件或者终端输入以下命令来安装: + + sudo apt-get install compiz compizconfig-settings-manager compiz-fusion-plugins-extra compiz-fusion-plugins-main compiz-plugins + +现在你的Ubuntu桌面变得具有超能力了!所有的这些步骤都有成千上万种选择,所以折腾是无极限的。还在等什么?还不赶紧去享受你的新Ubuntu桌面! + +-------------------------------------------------------------------------------- + +via: http://www.muktware.com/2014/05/customize-ubuntu-desktop-6-steps/26750 + +译者:[译者ID](https://github.com/JonathanKang) 校对:[校对者ID](https://github.com/校对者ID) + +本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出 + +[1]:https://apps.ubuntu.com/cat/applications/unity-tweak-tool/ +[2]:http://numixproject.org/ +[3]:http://gnome-look.org/?xcontentmode=100 +[4]:http://mokaproject.com/ +[5]:http://zagortenay333.deviantart.com/art/Conky-Harmattan-426662366 +[6]:http://www.deviantart.com/art/Conky-Harmattan-426662366 +[7]:http://www.deviantart.com/?qh=§ion=&global=1&q=conky +[8]:https://apps.ubuntu.com/cat/applications/compizconfig-settings-manager/