美文网首页
Ubuntu美化笔记

Ubuntu美化笔记

作者: molscar | 来源:发表于2017-12-17 15:59 被阅读0次

参考:http://www.jianshu.com/p/4bd2d9b1af41

主题美化篇

美化效果如图:

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

    主题

    图标

    Ultra-Flat主题中显示搜狗拼音托盘图标

  5. 字体

    ubuntu自带的字体不太好看,所以采用文泉译微米黑字体替代,效果会比较好,毕竟是国产字体!

    sudo apt-get install fonts-wqy-microhei1
    

    然后通过unity-tweak-tool来替换字体:

    替换字体
  6. cairo dock

    TODO

终端篇

  1. zsh

    终端采用zsh和oh-my-zsh,既美观又简单易用,主要是能提高你的逼格

    zsh: https://github.com/robbyrussell/oh-my-zsh

    效果:

    img
    1. 安装zsh:

      sudo apt-get install zsh
      
    2. 下载 oh-my-zsh 项目来帮我们配置 zsh

      sudo wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
      
    3. 切换到 zsh 模式

      chsh -s /bin/zsh
      
    4. 修改配色

      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

  2. fish

    github: https://github.com/oh-my-fish/oh-my-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
      

      theme: https://github.com/oh-my-fish/oh-my-fish/blob/master/docs/Themes.md
      个人使用: robbyrussell

Vim篇

https://github.com/amix/vimrc

相关文章

  • Ubuntu美化笔记

    参考:http://www.jianshu.com/p/4bd2d9b1af41 主题美化篇 美化效果如图: 安装...

  • 2018-09-20 Ubuntu 装机美化---完整记录

    Ubuntu 装机美化---完整记录 一、前期准备 U盘一个 笔记本一台 Ubuntu 16.04 iso文件 软...

  • Ubuntu18.04美化篇

    ubuntu 18.04美化 安装完Ubuntu后,我们需要对其进行美化,废话不说,先看看美化后的结果 要达到这样...

  • ubuntu 16.04(个人备份自用)

    ubuntu使用技巧备份 ubuntu美化 ubuntu下使用nvm安装各种版本的node

  • Ubuntu美化

    欢迎移步我的个人博客查看。 简述 ubuntu是比较好用的Linux系统,从我的接触中,从10的版本到了18的版本...

  • Ubuntu 美化

    其实使用GNU/Linux 有很长一段时间了,大部分发行版本都尝试过,不过最后还是喜欢上了Ubuntu,我用的是1...

  • 美化Ubuntu

    Ubuntu 16.04主题美化和软件推荐 系统清理 系统更新安装完系统之后,需要更新一些补丁。Ctrl+Alt+...

  • ubuntu美化

    https://www.cnblogs.com/feipeng8848/p/8970556.html[https:...

  • Ubuntu 18.04装机及美化

    Ubuntu 系统安装及美化教程,以及一些实用软件推荐 一、Ubuntu 18.04 装机 安装教程以Ubuntu...

  • Ubuntu18.04.2LTS安装、配置、美化

    Ubuntu18.04.2LTS安装、配置、美化 安装准备 准备Ubuntu18.04镜像 关闭Secure Bo...

网友评论

      本文标题:Ubuntu美化笔记

      本文链接:https://www.haomeiwen.com/subject/kszywxtx.html