參考:http://www.lxweimin.com/p/4bd2d9b1af41
主題美化篇
美化效果如圖:
-
安裝unity-tweak-tool
相信很多人都已經看出來了, 我肯定是要借助unity-tweak-tool來進行設置的sudo apt-get install unity-tweak-tool 或者 wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add - sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list' sudo apt-get update sudo apt-get install ubuntu-tweak
順帶裝一下優化工具gnome-tweak-tool
gnome-tweak-tool的話主要是用來設置開機自啟, 當然它還有很多其它作用, 順帶一提Flatabulous的黑色主題可以在這里開啟sudo apt-get install gnome-tweak-tool
-
Flatabulous
一個久負盛名的扁平化主題
- Using the .deb file for Debian, Ubuntu and derivatives (Recommended)
Download the .deb file from here, double click to open with Ubuntu Software Center and click on install. Then, install the theme using ubuntu-tweak.
-
Using the noobslab PPA
sudo add-apt-repository ppa:noobslab/themes sudo apt-get update sudo apt-get install flatabulous-theme
-
numix-gtk-theme
sudo add-apt-repository ppa:numix/ppa sudo apt-get update sudo apt-get install numix-gtk-theme numix-icon-theme-circle
-
Flat Icons
For icons, I use the ultra-flat-icons theme. It is available in blue (recommended), orange and mint green colors. To install this, you can run the following commands
sudo add-apt-repository ppa:noobslab/icons sudo apt-get update sudo apt-get install ultra-flat-icons
Alternatively, you could also run
sudo apt-get install ultra-flat-icons-orange
ORsudo apt-get install ultra-flat-icons-green
.?
安裝完成后,打開unity-tweak-tool軟件,修改主題和圖標:
進入Theme,修改為Flatabulous
主題?
圖標?
Ultra-Flat主題中顯示搜狗拼音托盤圖標
-
字體
ubuntu自帶的字體不太好看,所以采用文泉譯微米黑字體替代,效果會比較好,畢竟是國產字體!
sudo apt-get install fonts-wqy-microhei1
然后通過unity-tweak-tool來替換字體:
替換字體 -
cairo dock
TODO
?
終端篇
-
zsh
終端采用zsh和oh-my-zsh,既美觀又簡單易用,主要是能提高你的逼格
zsh: https://github.com/robbyrussell/oh-my-zsh
效果:
img-
安裝zsh:
sudo apt-get install zsh
-
下載 oh-my-zsh 項目來幫我們配置 zsh
sudo wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
-
切換到 zsh 模式
chsh -s /bin/zsh
-
修改配色
img其中,文字和背景采用系統主題,透明度設為10%,下面的palette樣式采用Tango
?
Zsh安裝配置指南 http://www.linuxidc.com/Linux/2013-09/90377.htm
使用 Zsh 的九個理由 http://www.linuxidc.com/Linux/2013-05/84191.htm
Zsh使用心得三則 http://www.linuxidc.com/Linux/2012-08/67735.htm
Linux下安裝終極Shell Zsh http://www.linuxidc.com/Linux/2012-08/67734.htm
-
-
fish
github: https://github.com/oh-my-fish/oh-my-fish
-
安裝fish
Ubuntu 安裝fish 并且設為默認shell
sudo apt install fish chsh -s $(which fish)
解釋:
chsh -s 后面加路徑 : 設置當前用戶默認shell
which fish :查看fish程序的路徑
chsh -s $(which fish) : 設置fish為當前用戶默認shell -
安裝oh my fish
curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.sh | sh
theme: https://github.com/oh-my-fish/oh-my-fish/blob/master/docs/Themes.md
個人使用: robbyrussell
-