美文网首页Arch之道
linux的一些美化优化

linux的一些美化优化

作者: _narcissus | 来源:发表于2018-11-24 20:00 被阅读44次

    所以pacman命令能生效的前提是开启了AUR源,以及安装了AUR的包管理器yay。在pacman搜索不到的情况下使用yay。

    • 让man有不同颜色显示,加入.bashrc或者.zshrc,取决于使用何种shell

      man() {
          LESS_TERMCAP_md=$'\e[01;31m' \
          LESS_TERMCAP_me=$'\e[0m' \
          LESS_TERMCAP_se=$'\e[0m' \
          LESS_TERMCAP_so=$'\e[01;44;33m' \
          LESS_TERMCAP_ue=$'\e[0m' \
          LESS_TERMCAP_us=$'\e[01;32m' \
          command man "$@"
        }
      
    • diff没有颜色显示,那么安装colordiff

    • 安装编程用字体 iosevka

    • 将firefox等浏览器的缓存文件放入RAM,加快响应速度以及减少SSD的数据写入。

      pacman -S profile-sync-daemon
      systemctl --user enable psd.service
      
      • 开启overlay:在~/.config/psd/psd.conf中加入 USE_OVERLAYFS="yes"
      • /etc/sudoers/ 中加入 user ALL=(ALL) NOPASSWD: /usr/bin/psd-overlay-helper
    • 安装QQ或者TIM。先在 /etc/pacman.conf 中开启multilib仓库

       pacman -S deepin-qq-im
      pacman -S deepin-wine-tim
      

    相关文章

      网友评论

        本文标题:linux的一些美化优化

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