# 1. 后台启动 (关窗不掉线,且不产生日志垃圾文件) alias mstart=’nohup /usr/local/bin/mihomo -d ~/.config/mihomo > /dev/null 2>&1 &’ # 2. 查看状态 (查看进程号、运行时间、CPU占用) alias mstat=’ps -ef […]
Category: Tools
Sublime Auto Dark Mode
save this file as python file format, e.g.: auto_dark_mode.py you can change the color theme if you wish import sublime […]
Keep SSH Connection Alive
ssh user@ip-address -i ~/.ssh/RSA file -p port number -o ServerAliveInterval=60 -o ServerAliveCountMax=3
Vim Orders
01 Move Cursor 02 Screen Scroll and Jump 03 Text Find & Replace 04 Text Insert 05 Text Delete 06 […]
Replace blanks in VS Code
Step 1: Press the group keys “Ctrl+F” and paste “^\s*(?=\r?$)\n“, then press group keys “Alt + R“. Step 2: Replace the multiple […]