Installation and Configuration Manjaro-KDE

Installation and Configuration Manjaro-KDE

System installation

Boot disk

Official website to download the system image, select the appropriate desktop systems. (I chose KDE)
using rufus make a boot disk.

System partition

The installation requires dual system / boot / efi win10 mounted to the partition efi

  1. / (Root partition) 15-20 GB
  2. /boot 512 MB
  3. / Var 12-16 GB
  4. linuxswap 4 GB
  5. /home >20GB

Configuration

Change the way double-click to open the file

System Settings->Workspace->Workspace Behavior->General Behavior->Click behavior

Replace the Chinese source

Excuting an order:

sudo pacman-mirrors -i -c China -m rank

Command is executed after the end of the pop-up window, select the source, you can select the fastest.
Modify /etc/pacman.conf
the end of the file add:

[archlinuxcn]
SigLevel = Optional TrustedOnly
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch

Execute the following command:

sudo pacman -Syy #本地软件与软件仓库进行同步
sudo pacman -S archlinuxcn-keyring

Source has been replaced successfully.
You can be updated at the system:

sudo pacman -Syyu

Installation of common software

1. Input

sudo pacman -S fcitx-im #全部安装
sudo pacman -S fcitx-configtool

In ~/.xprofileaccession (not then need to create) are:

export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"

After the restart input method can be used.

2.Tim / WeChat

KDE desktop need to install gnome-settings-daemon

sudo pacman -S gnome-settings-daemon

系统设置->开机或关机->自动启动->添加脚本->输入/usr/lib/gsd-xsettings
Installation Package Manager, and Tim, Wechat

sudo pacman -S yay
yay -S deepin.com.qq.office
yay -S deepin-wine-wechat

Restart to use Tim, Wechat

3. Install common tools

yay -S vim
yay -S wps-office
yay -S ttf-wps-fonts
yay -S typora
yay -S google-chrome

Simple landscaping

System theme
System Settings -> Appearance -> Global Theme -> Get New Global Themes
Select the appropriate installation topics.
The terminal
Settings -> Appearance -> Get New
select an appropriate color and font.

zsh Configuration

manjaro comes zsh, comes not be used yay -S zshto install
view existing shell

cat /etc/shells

May be provided in the terminal for switching zsh
can be switched by a command:

chsh -s /bin/zsh

Generally need to restart the terminal commencement
mounted oh-my-zsh

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"#可能需要代理

zsh theme
through the following command to view the available Theme:

ls ~/.oh-my-zsh/themes

Modify a theme, edit ~/.zshrcfiles, read ZSH_THEME="agnoster".
zsh to expand
in ~/.zshrcto find the pluginskeyword, you can customize the plugin enabled, the system loaded by default git.
zsh-autosuggestions plug-in installation

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

zsh-syntax-highlighting mounting plug

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Disposed in ~ / .zshrc in

plugins=(
   git
   zsh-syntax-highlighting
   zsh-autosuggestions
)

vim configuration

You can install someone else's configuration, such as: https://github.com/amix/vimrc

reference

  1. zsh + on-my-zsh Configuration Tutorial Guide (necessary programmer) has [Backup]
  2. Manjaro installation, configuration, beautify Guide
  3. Life is short, I Manjaro

Guess you like

Origin www.cnblogs.com/wheszza/p/12519403.html