manjaro i3 21个人简单配置

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

  1. 下载地址
    https://code.visualstudio.com/Download
  2. 配置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中就可以找到了。

  1. 创建桌面图标
    在/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+Enter Terminalmod+v 垂直分屏
mod+h 水平分屏mod+e 切换分屏方式
mod+s 切换窗口到stacking模式mod+w 切换窗口到tabbed模式
mod+q 切换下一个窗口的分屏方式mod+f 全屏
mod+d dmenumod+shift+q 关闭窗口
mod+num 切换到workspace nummod+shift+r 就地重启i3
mod+shift+e exit i3mod+shift+space 将窗口切换到为floating模式
mod+a focus parentmod+Shift+C 重载配置文件(修改配置文件后需要通过此命令应用)
mod+shift+方向 移动窗口位置mod+ctrl+num 移动窗口到工作区num
$mod+r 进入调整窗口大小模式(通过方向键调整大小,按Enter退出)

字体安装

参考:https://www.jianshu.com/p/26fa3a803439

  1. 基本字体
sudo pacman -S ttf-roboto noto-fonts ttf-dejavu
  1. 文泉驿
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
  1. 撸代码用 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
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,271评论 6 524
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,533评论 3 405
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,580评论 0 370
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,203评论 1 303
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,204评论 6 401
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,664评论 1 316
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 42,014评论 3 431
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,991评论 0 280
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,536评论 1 326
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,558评论 3 347
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,678评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,267评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,997评论 3 341
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,429评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,580评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,259评论 3 382
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,744评论 2 366

推荐阅读更多精彩内容

  • 更改国内源 sudo pacman-mirrors -GB testing -c China 增加Arch lin...
    vimtest阅读 18,454评论 1 10
  • 这部分是借鉴github上wang1的 Manjaro -i3的配置记录和相关文件 配置文件及其位置 i3's c...
    好脾气囍来阅读 2,671评论 0 1
  • 如果你是一个强迫症患者,希望把窗口与窗口之间拼接得整整齐齐;如果你喜欢用键盘完成工作超过用鼠标——那么 i3 就是...
    苏尚君阅读 3,930评论 0 1
  • webpack相关 https://blog.csdn.net/sinat_17775997/article/de...
    蛋挞xjc阅读 557评论 0 1
  • 0.链接 状态码精选 https://www.cnblogs.com/yaya-003/p/12653602.ht...
    蛋挞xjc阅读 383评论 0 0