Record once Ubuntu Basic Configuration and landscaping

Record once Ubuntu Basic Configuration and landscaping

Configuration

  1. Update for domestic source

    Open Software Updater, select Settings and select domestic sources (such as Ali source).

    Update Source

    sudo apt update
    sudo apt upgrade 
  2. Install Chrome browser

    wget -q -O - https://raw.githubusercontent.com/longhr/ubuntu1604hub/master/linux_signing_key.pub | sudo apt-key add
    sudo sh -c 'echo "deb [ arch=amd64 ] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
    sudo apt-get update
    sudo apt-get install google-chrome-stable

beautify

Replacement gnome theme, install gnome-tweak-tool.

sudo apt-get install gnome-tweak-tool

Then we can modify the settings of some basic topics, to conduct advanced settings we also need to install gnome-shell-extensions.

sudo apt-get install gnome-shell-extensions

Install a local service support

sudo apt install chrome-gnome-shell

Then we can install additional feature, just click install expansion program we can enter into the gnome-tweak-tool's official website, the selection function to install their own needs.

Attached: the GNOME Theme plugin's official website

Search dash-to-dock installed

So that we can use in the gnome-tweak-tool you can customize your own dock bar

Show my own theme

Desktop themes and icon themes recommendation

Desktop Themes: vimix-gtk-Theme

Icon Theme: vimix-icon-Theme

Desktop Themes installed

After entering the decompression Github download files, execute the resulting Vimix-installer file

Icon theme installation

After entering the decompression Github download files, execute the resulting Installer.sh file

After enter gnome-tweak-tool set icon and theme

I'm using the icon Paper expanding opened Dash-to-dock and User Themes

Simple configuration console

This is my console interface themes with a gnome-tweak-tool

Installation oh-my-zsh

Do not install git git

sudo apt-get install git

After which you can install, you may be slower

sudo wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
chsh -s /bin/zsh

Restart terminal

Modify oh-my-zsh theme, open the configuration file to modify ZSH_THEME , modify theme

ZSH_THEME="agnoster"

Then add in the end of the file export DEFAULT_USER = "username"

username is your user name, you can hide the user name of the head, displayed in ~

Zsh run automatically when> command to modify the terminal to open - open the Edit terminal -> Preferences

zsh plug

  1. Automatic command completion plugin zsh-autosuggestions

    git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

    Then ~/.zshrcfind the file in the plugins array, add zsh-autosuggestionsname, reopen the terminal.

  2. Command syntax highlighting plugin zsh-syntax-highlighting

    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

    Edit the ~/.zshrcfile and then plug the reference command written to the file last line

    # Note the source command must be at the end of .zshrc
    source "$ZSH_CUSTOM/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"

ends

Reference: https://www.cnblogs.com/weixuqin/p/10046465.html
https://www.jianshu.com/p/a94e2c59f244

Guess you like

Origin www.cnblogs.com/geepair/p/11879275.html