博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu美化笔记
阅读量:6175 次
发布时间:2019-06-21

本文共 2551 字,大约阅读时间需要 8 分钟。

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

主题美化篇

美化效果如图:

  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 updatesudo 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 , 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/themessudo apt-get updatesudo apt-get install flatabulous-theme复制代码
  3. numix-gtk-theme

    sudo add-apt-repository ppa:numix/ppasudo apt-get updatesudo 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/iconssudo apt-get updatesudo 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. zsh

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

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

    效果:

    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. 修改配色

      其中,文字和背景采用系统主题,透明度设为10%,下面的palette样式采用Tango

      Zsh安装配置指南

      使用 Zsh 的九个理由

      Zsh使用心得三则

      Linux下安装终极Shell Zsh

  2. fish

    github: https://github.com/oh-my-fish/oh-my-fish

    1. 安装fish

      Ubuntu 安装fish 并且设为默认shell

      sudo apt install fishchsh -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

转载于:https://juejin.im/post/5a5074436fb9a01c975a0f27

你可能感兴趣的文章
HTTP以及HTTPS协议
查看>>
Browser:浏览器版本判断类
查看>>
MyEclipse Servers视窗出现“Could not create the view: An unexpected exception was thrown”错误解决办法...
查看>>
伪类和伪元素
查看>>
jquery
查看>>
Day 3:模块结构和布局
查看>>
PWP+Nginx 集成环境下载
查看>>
【整理】RabbitMQ publish方法中的immediate和mandatory属性
查看>>
JAVA CAS原理深度分析
查看>>
JQuery的表单验证
查看>>
javascript 鼠标选中部分值的获取 (有文本框)
查看>>
权限模型
查看>>
如何配置 Log4J 只保留最近七天的日志文件
查看>>
Python 类与元类的深度挖掘 II
查看>>
prometheus收集springboot指标
查看>>
global gtags的配置
查看>>
iOS开发 — Quartz 2D知识点应用 (制作了一个Demo,源代码)
查看>>
Creating a Windows Image on OpenStack
查看>>
jquery图片自动缩放
查看>>
ie6 失真问题
查看>>