Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
Svn-to-Git
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王华
Svn-to-Git
Commits
da1bd4dd
You need to sign in or sign up before continuing.
Commit
da1bd4dd
authored
Jan 31, 2019
by
王进波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
4d6d4987
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
ArchLinux中设置Wine调用iBus.md
doc/ArchLinux中设置Wine调用iBus.md
+43
-0
Archlinux Yaourt 跳过 gpg 校验.md
doc/Archlinux Yaourt 跳过 gpg 校验.md
+20
-0
No files found.
doc/ArchLinux中设置Wine调用iBus.md
0 → 100644
View file @
da1bd4dd
# ArchLinux 中设置 Wine 调用 iBus
前言:
如果你是
**fcitx输入法用户**
,那么这篇文章大可不必看。fcitx是一个非常强大的框架,著名
[
搜狗输入法
](
http://pinyin.sogou.com/linux/
)
就是基于fcitx输入法架构开发的。据我所知。您遇到这个问题可以通过
**卸载ibus输入法进行修复**
。(在ubuntu等系统中fcitx中必ibus优先级低,所以需要卸载ibus进行修复)
ibus输入法用户可以继续往下看,
**ibus架构推荐rime输入法**
。

------
首先,系统中用户目录下几个文件。您要有所了解,他们是:
-
$HOME/.profile:该文件是用户环境配置文件。(在非 ArchLinux 中还有其他名称 “.bash_profile”。意思一样,发行版本不同)
-
$HOME/.bash_logout :该文件作为用户退出登录时执行的配置文件。
-
**/etc/****profile*****:该文件是用户环境配置文件。**
*
(在读取$HOME失败时会读取该文件,对全局所有用户生效)
-
/etc/bash.bash_logout :类似,同上。
-
source 命令可以作为立即生效使用:
***source /etc/profile**
*
------
那么怎么使用呢。就是在
**$HOME/.profile**
输入以下代码:
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
export LC_CTYPE="zh_CN.utf8"
export LC_COLLATE="en_US.UTF-8"
export LC_ALL=""
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export XIM=ibus
export QT_IM_MODULE=ibus
export XIM_ARGS="ibus-daemon -d -x"
这样还不够。你还需要在
**/etc/profile**
中添加
ibus-daemon -d -x
让ibus输入法开机自行启动。-d表示静默后台系统,-x(--xim)表示使用X server模式。
\ No newline at end of file
doc/Archlinux Yaourt 跳过 gpg 校验.md
0 → 100644
View file @
da1bd4dd
```shell
yaourt --m-arg "--skippgpcheck" -S {{ package }}
```
> ###
>
> --skipinteg
>
> Do not perform any integrity checks (checksum and PGP) on source files.
>
> --skipchecksums
>
> Do not verify checksums of source files.
>
> --skippgpcheck
>
> Do not verify PGP signatures of source files
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment