manjaro的安装及配置

更新国内源

  • sudo pacman-mirrors -c China

更新系统

  • sudo pacman -Syyu

更改字体大小

  • 创建文件:vim ~/.Xresources
  • 在文件中添加:Xft.dpi:200

安装终端

  • sudo pacman -S alacritty

安装dmenu

  • sudo pacman -S dmenu

更改键位xorg

  • sudo pacman -S xorg

显示当前键位

  • xmodmap

查看每个键位值

  • xmodmap -pke

将键位值文件写到指定编辑文件

  • xmodmap -pke > ~/.xmodmap

查看当前按的键的值

  • xev

安装窗口主题

  • pacman -S lxappearance

启动

  • lxappearance

背景壁纸

  • sudo pacman -S feh
  • sudo pacman -S variety

终端透明度

  • vim ~/.config/alacritty/alacritty.yml

安装渲染器

  • sudo pacman -S compton
  • 报错解决:
  • /etc/xdg/compton.conf
    在compton.conf中,注释:
#vsync="opengl";

pricom.conf注解:

vsync=true

安装polybar

  • 安装:sudo pacman -S polybar
  • 在~/.config目录下新建polybar文件
  • 将/usr/share/doc/polybar下的config文件复制到我们的polybar中:cp /usr/share/doc/polybar/config/config polybar/
  • 开机启动在polybar中写个脚本
  • vim launch.sh
  • 写入:
killall polybar
polybar example
  • 在i3配置文件中添加
exec_always ~/.config/polybar/launch.sh

更改屏幕分辨率

xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 "1920x1080_60.00"

xrandr查看是否有1920x1080选项,有则执行更改

xrandr -s 1920x1080

如果想开机自启在~/.profile文件中添加上面三行代码

你可能感兴趣的:(Linux)