Maple-pro / blog

blog.maples31.com/blog - my blog website, combined with hexo, deployed on github page
https://blog.maples31.com
0 stars 0 forks source link

Arch Linux 安装配置记录 | Maples' Space #53

Open Maple-pro opened 1 year ago

Maple-pro commented 1 year ago

https://blog.maples31.com/2023/03/28/Arch-Linux-installation-record/#more

本文记录了 Arch Linux 和 Windows 11 双系统安装和基本配置的流程。 硬件:Intel CPU,Nvidia GPU,双硬盘(nvme0n1 & nvme1n1); 软件:Windows 11(安装在 nvme0n1 上),启动类型为 UEFI; 目标:将 Arch Linux 安装在 nvme1n1 上,开机时通过 GRUB 引导选择启动系统。

Maple-pro commented 1 year ago

Windows powershell profile setting ($PROFILE):

Import-Module posh-git
Import-Module oh-my-posh

Set-Theme lambda

function setproxy {
  $env:HTTP_PROXY="http://127.0.0.1:7890";
  $env:HTTPS_PROXY="http://127.0.0.1:7890"
}

function unsetproxy {
  $env:HTTP_PROXY="";
  $env:HTTPS_PROXY=""
}

function setgitproxy {
  git config --global http.proxy "http://127.0.0.1:7890";
  git config --global https.proxy "http://127.0.0.1:7890"
}

function unsetgitproxy {
  git config --global --unset http.proxy;
  git config --global --unset https.proxy
}
Maple-pro commented 1 year ago

KDE shortcuts:

Maple-pro commented 2 months ago

2.3.8 中,第 20 条,WPS 加粗字体无法正常显示的问题已经修复,不必再降级 freetype2

Maple-pro commented 1 month ago

参考文章:Linux 下的字体调校指南