1. 程式人生 > >ubuntu美化筆記

ubuntu美化筆記

主題美化篇

美化效果如圖:

Imgur

  1. 安裝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
  2. Flatabulous

    一個久負盛名的扁平化主題

    1. 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.

    1. Using the noobslab PPA

      sudo add-apt-repository ppa:noobslab/themes
      sudo apt-get update
      sudo apt-get install flatabulous-theme
  3. 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
  4. 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 OR sudo apt-get install ultra-flat-icons-green.

    安裝完成後,開啟unity-tweak-tool軟體,修改主題和圖示:

    進入Theme,修改為Flatabulous

    主題

    圖示

  5. 字型

    ubuntu自帶的字型不太好看,所以採用文泉譯微米黑字型替代,效果會比較好,畢竟是國產字型!

    sudo apt-get install fonts-wqy-microhei1

    然後通過unity-tweak-tool來替換字型:

    替換字型

  6. cairo dock

    TODO

終端篇

  1. fish

    1. 安裝fish

      Ubuntu 安裝fish 並且設為預設shell

      sudo apt install fish
      chsh -s $(which fish)

      解釋:

      chsh -s 後面加路徑 : 設定當前使用者預設shell
      which fish :檢視fish程式的路徑
      chsh -s $(which fish) : 設定fish為當前使用者預設shell

    2. 安裝oh my fish

      curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.sh | sh

Vim篇