Ubuntu 安装后要做的事情

安装Source Code Pro字体

https://github.com/adobe-fonts/source-code-pro/downloads

安装Emacs

sudo add-apt-repository ppa:ubuntu-elisp/ppa
sudo apt update
sudo apt install emacs-snapshot emacs-snapshot-el

编辑.emacs文件

(custom-set-variables
 '(blink-cursor-mode nil)
 '(inhibit-startup-screen t))
(custom-set-faces
 '(default ((t (:family "Source Code Pro" :foundry "ADBE" :slant normal :weight semi-bold :height 98 :width normal)))))
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(setq make-backup-files nil)  
(setq-default indent-tabs-mode nil)

安装QQ

参考 https://phpcj.org/wineqq/

安装Steam

https://store.steampowered.com/about/ 安装Steam,然后

sudo apt install curl python-apt
sudo dpkg -i steam_latest.deb

修改hosts:sudo emacs /etc/hosts
加上

23.50.18.229 steamcommunity.com

安装typora

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
sudo add-apt-repository 'deb https://typora.io linux/'
sudo apt-get update
sudo apt-get install typora

猜你喜欢

转载自blog.csdn.net/wang3312362136/article/details/80067888