美文网首页
Ubuntu准备工作

Ubuntu准备工作

作者: 风静花犹落 | 来源:发表于2018-12-28 13:55 被阅读0次

〇. 改变ubuntu终端显示语言

如果希望终端显示英文,可以设置系统变量

export LC_ALL=C

若希望恢复为本地语言,则

unset LC_ALL

二.多分屏terminator 安装与配置

1.安装

sudo apt-get install terminator

2.配置

vim ~/.config/terminator/config

3.修改配置文件

[global_config]
  title_transmit_bg_color = "#d30102"
  focus = system
  suppress_multiple_term_dialog = True
[keybindings]
[profiles]
  [[default]]
    palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec"
    background_color = "#2D2D2D" # 背景颜色
    background_image = None   
    background_darkness = 0.85 
    cursor_color = "#2D2D2D" # 光标颜色
    cursor_blink = True # 光标是否闪烁
    foreground_color = "#EEE9E9" # 文字的颜色
    use_system_font = False # 是否启用系统字体
    font = Ubuntu Mono 13  # 字体设置,后面的数字表示字体大小
    copy_on_selection = True # 选择文本时同时将数据拷贝到剪切板中
    show_titlebar = False # 不显示标题栏,也就是 terminator 中那个默认的红色的标题栏
[layouts]
  [[default]]
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = default
    [[[window0]]]
      type = Window
      parent = ""
[plugins]

4.常用操作快捷键

Ctrl+Shift+O (水平分割)
    Split terminals Horizontally.

Ctrl+Shift+E (垂直分割)
    Split terminals Vertically.

Ctrl+Shift+W (关闭当前窗口)
    Close the current terminal.

Ctrl+Tab (切换窗口)
    Move to next terminal within the same tab

Ctrl+Shift+X (最大化当前窗口)
    Toggle between showing all terminals and only showing the current one (maximise).
    
Ctrl+Shift+Left;
Ctrl+Shift+Right;
Ctrl+Shift+Up;
Ctrl+Shift+Down;
    Move parent dragbar.(改变当前窗口大小)

三.优化工具

英文名是gnome tweak tool,

四. Coverflow alt-tab

华丽的切换窗口预览动画

五. Dash to dock

这个插件大部分使用gnome桌面都会装

六. User themes

这个是最主要的,打开这个才能使用其他扩展

七. 安装主题

Flat Remix icon theme

Terminal installation
cd /tmp && rm -rf Flat-Remix &&
git clone https://github.com/daniruiz/Flat-Remix &&
mkdir -p ~/.icons && cp -r Flat-Remix/Flat\ Remix* ~/.icons/ &&
gsettings set org.gnome.desktop.interface icon-theme "Flat Remix"
Ubuntu based distributions
sudo add-apt-repository ppa:daniruiz/flat-remix
sudo apt-get update
sudo apt-get install flat-remix

八. 优化字体

安装方法:
下载lulinux_fontpack_deb_170918

sudo sh install.sh

卸载方法:

sudo sh uninstall.sh

设置-优化-字体-渲染:

微调: Full
抗锯齿: standard(grayscale)

相关文章

网友评论

      本文标题:Ubuntu准备工作

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