Merge branch 'master' of https://git.coding.net/lion187/NotePublic
This commit is contained in:
commit
a4cea2e2ec
|
@ -154,6 +154,24 @@ pacman -S base-devel git gcc make cmake gdb python2 python3 go arm-none-eabi-gcc
|
|||
pacman -S firewalld
|
||||
```
|
||||
|
||||
## 安装 Gnome
|
||||
|
||||
使用下列命令安装 Gnome 并安装 Gnome 配置工具(gnome-tweaks):
|
||||
|
||||
```sh
|
||||
pacman -S gnome gnome-extra gnome-tweaks chrome-gnome-shell gnome-shell-extensions
|
||||
```
|
||||
|
||||
使用下列命令安装 Flatix 和 Papirus 主题:
|
||||
|
||||
```sh
|
||||
pacman -S flatix-theme flatix-theme-dark papirus-icon-theme papirus-maia-icon-theme
|
||||
```
|
||||
|
||||
之后可在 gnome-tweaks 中更换主题。
|
||||
|
||||
访问 <https://extensions.gnome.org> 搜索 AlternateTab 扩展,在网页上安装浏览器插件后可在扩展的首页右上角看到开关按钮,点击打开就会自动安装,之后在 gnome-tweaks 可以找到该扩展,使能该扩展实现“仅在当前工作区中切换窗口”的功能。
|
||||
|
||||
### 安装 fcitx 输入法
|
||||
|
||||
输入以下命令安装 fcitx-im 默认安装全部软件,并安装 google 拼音输入法:
|
||||
|
@ -186,9 +204,22 @@ fcitx-diagnose
|
|||
|
||||
### 安装 IBus 输入法
|
||||
|
||||
Gnome 桌面默认搭配 IBus 输入法,进入 Gnome 设置,选择区域和语言,设置为中文,点击管理已安装的语言。如果提示语言包不完整则点击确认安装。然后将“汉语(中国)”提升为第一个,键盘输入法选 IBus,然后应用到整个系统即可。
|
||||
输入以下命令安装 ibus。
|
||||
|
||||
关闭“语言支持”窗口后,在“Gnome 设置->区域和语言”中将输入源配置为“汉语(Intelligent Pinyin)”,并提升为第一个,这个兼容最好。点击 Intelligent Pinyin 的设置,将"常规“中”语言初始状态“设置为”英文“;将”快捷键“中“切换中文/英文模式”快捷键设置为“Shift”。
|
||||
```sh
|
||||
pacman -S ibus ibus-libpinyin
|
||||
yaourt ibus-qt
|
||||
```
|
||||
|
||||
添加如下代码到 ~/.xprofile,如果该文件不存在则创建一份。
|
||||
|
||||
```sh
|
||||
export GTK_IM_MODULE=ibus
|
||||
export QT_IM_MODULE=ibus
|
||||
export XMODIFIERS=@im=ibus
|
||||
```
|
||||
|
||||
如果是 Gnome 桌面,进入 Gnome 设置,选择区域和语言,将输入源配置为“汉语(Intelligent Pinyin)”,并提升为第一个(这个输入法与 Gnome 兼容最好)。点击 Intelligent Pinyin 的设置,将"常规“中”语言初始状态“设置为”英文“;将”快捷键“中“切换中文/英文模式”快捷键设置为“Shift”。
|
||||
|
||||
*注:如果有多个输入法,可以使用 im-config 工具进行切换。*
|
||||
|
||||
|
|
Loading…
Reference in New Issue