manjaro i3修改字体Dpi,以及conky_maia中文字体乱码
修改字体DPI
1.编辑.Xresources
sudo nano .Xresources
2.修改Xft.dpi这一行
xft.dpi : 125
3.使配置文件生效
sudo xrdb .Xresources
reboot
修复conky_main乱码
默认字体在中文环境下显示会有问题,因此修改字体换成一个支持中文字体的
1.编辑/usr/share/conky/conky_maia
sudo nano /usr/share/conky/conky_maia
2.修改Bitstream Vera字体为anti或者文泉驿
以下命令为进入vim后按下ESC后输入
:%s/Bitstream Vera/anti
安装vscode
- 下载地址
https://code.visualstudio.com/Download - 配置dmeun打开
解压安装包到自己的目录
例:
sudo tar -zxvf code-stable-1562627471.tar.gz -C /home/yeyu
2.1加上运行权限
sudo chmod +x /home/yeyu/VSCode-linux-x64/code
2.2 加入系统环境
ln -s /home/yeyu/VSCode-linux-x64/code /usr/local/bin/code
以上完成后在dmeun中就可以找到了。
- 创建桌面图标
在/usr/share/applications/下创建visualstudiocode.desktop文件
vim /usr/share/applications/visualstudiocode.desktop
拷贝如下内容:
[Desktop Entry]
Name=Visual Studio Code
Comment=Multi-platform code editor for Linux
Exec=/opt/VSCode-linux-x64/code
Icon=/usr/share/icons/code.png
Type=Application
StartupNotify=true
Categories=TextEditor;Development;Utility;
MimeType=text/plain;
更改python解释器,根据图中点击打开命令面板,或使用快捷键 Ctrl+Shift+P,面板中输入 python:Select Interpreter, 选择解释器即可。此时会生成settings.json文件,可在里面修改。
不配置也可以在后台运行的命令
./code &>/dev/null &
运行后会给一个进程id,可以用:
kill -9 ID
结束掉进程。
键位 作用
mod+v 垂直分屏
mod+e 切换分屏方式
mod+w 切换窗口到tabbed模式
mod+f 全屏
mod+shift+q 关闭窗口
mod+shift+r 就地重启i3
mod+shift+space 将窗口切换到为floating模式
mod+Shift+C 重载配置文件(修改配置文件后需要通过此命令应用)
mod+ctrl+num 移动窗口到工作区num
$mod+r 进入调整窗口大小模式(通过方向键调整大小,按Enter退出)
字体安装
- 基本字体
sudo pacman -S ttf-roboto noto-fonts ttf-dejavu
- 文泉驿
sudo pacman -S wqy-bitmapfont wqy-microhei wqy-microhei-lite wqy-zenhei
3.思源字体
sudo pacman -S noto-fonts-cjk adobe-source-han-sans-cn-fonts adobe-source-han-serif-cn-fonts
4.Awesome 字体
sudo pacman -S ttf-font-awesome
- 撸代码用 Source Code Pro 和 Fira Code
sudo pacman -S ttf-fira-code ttf-fira-mono ttf-rira-sans
sudo pacman -S adobe-source-code-pro-fonts
配置字体:
编辑文件~/.config/fontconfig/conts.conf(如果没有就创建)
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0">
<its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/>
</its:rules>
<description>Manjaro Font Config</description>
<!-- Font directory list -->
<dir>/usr/share/fonts</dir>
<dir>/usr/local/share/fonts</dir>
<dir prefix="xdg">fonts</dir>
<dir>~/.fonts</dir> <!-- this line will be removed in the future -->
<!-- 自动微调 微调 抗锯齿 内嵌点阵字体 -->
<match target="font">
<edit name="autohint"> <bool>false</bool> </edit>
<edit name="hinting"> <bool>true</bool> </edit>
<edit name="antialias"> <bool>true</bool> </edit>
<edit name="embeddedbitmap" mode="assign"> <bool>false</bool> </edit>
</match>
<!-- 英文默认字体使用 Roboto 和 Noto Serif ,终端使用 DejaVu Sans Mono. -->
<match>
<test qual="any" name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Serif</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Roboto</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>monospace</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>DejaVu Sans Mono</string>
</edit>
</match>
<!-- 中文默认字体使用思源宋体,不使用 Noto Sans CJK SC 是因为这个字体会在特定情况下显示片假字. -->
<match>
<test name="lang" compare="contains">
<string>zh</string>
</test>
<test name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend">
<string>Source Han Serif CN</string>
</edit>
</match>
<match>
<test name="lang" compare="contains">
<string>zh</string>
</test>
<test name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend">
<string>Source Han Sans CN</string>
</edit>
</match>
<match>
<test name="lang" compare="contains">
<string>zh</string>
</test>
<test name="family">
<string>monospace</string>
</test>
<edit name="family" mode="prepend">
<string>Noto Sans Mono CJK SC</string>
</edit>
</match>
<!-- 把Linux没有的中文字体映射到已有字体,这样当这些字体未安装时会有替代字体 -->
<match target="pattern">
<test qual="any" name="family">
<string>SimHei</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>Source Han Sans CN</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>SimSun</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>Source Han Serif CN</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>SimSun-18030</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>Source Han Serif CN</string>
</edit>
</match>
<!--
<match target="pattern">
<test qual="any" name="family">
<string>Microsoft YaHei</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>Source Han Sans CN</string>
</edit>
</match>
-->
<!-- Load local system customization file -->
<include ignore_missing="yes">conf.d</include>
<!-- Font cache directory list -->
<cachedir>/var/cache/fontconfig</cachedir>
<cachedir prefix="xdg">fontconfig</cachedir>
<!-- will be removed in the future -->
<cachedir>~/.fontconfig</cachedir>
<config>
<!-- Rescan in every 30s when FcFontSetList is called -->
<rescan> <int>30</int> </rescan>
</config>
</fontconfig>
设置coc.nvim默认python环境
CocCommand python.setInterpreter
配置fcitx
sudo pacman -S fcitx5 fcitx5-configtool fcitx5-qt fcitx5-gtk fcitx5-chinese-addons fcitx5-material-color
网友评论