美文网首页
manjaro i3 21个人简单配置

manjaro i3 21个人简单配置

作者: 夜之雨 | 来源:发表于2022-04-16 10:35 被阅读0次

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

相关文章

  • manjaro i3 21个人简单配置

    manjaro i3修改字体Dpi,以及conky_maia中文字体乱码 修改字体DPI 1.编辑.Xresour...

  • Manjaro i3 wm

    这部分是借鉴github上wang1的 Manjaro -i3的配置记录和相关文件 配置文件及其位置 i3's c...

  • ArchLinux从入门到跑路

    #本文为网上摘录,非原创 #安装过程复杂,后续配置过程更加复杂,尝试更改为manjaro i3 发现i3确实好用,...

  • Manjaro 简单配置

    1.下载Manjaro https://www.manjaro.cn/category/download-manj...

  • Manjaro初始简单配置

    Manjaro是一款基于发行版ArchLinux的衍生版本,继承了ArchLinux的滚动更新,又易于安装,开箱即...

  • Manjaro安装后简单配置

    一个相见恨晚的Linux操作系统 Manjaro到底有多受欢迎? Manjaro安装后简单配置 1. 换源 编辑这...

  • Ubuntu18+i3配置

    Ubuntu18+i3配置 安装i3 配置i3 登出账户,选择i3桌面进入 在登录输密码的那个界面有一个设置符号,...

  • manjaro 安装

    Manjaro 配置 记录安装Manjaro后的一些配置, 便于日后查阅和使用 [TOC] 安装 ​ 启动盘:...

  • manjaro安装及简单配置

    分区 配置 安装yay

  • 使用Manjaro

    Manjaro Linux 乐于简单https://www.manjaro.cn 各种社区版下载https://m...

网友评论

      本文标题:manjaro i3 21个人简单配置

      本文链接:https://www.haomeiwen.com/subject/ebakertx.html