把 Caps Lock 變成智慧的 Control 以及 Escape :
- 單獨輕按一下就是 Escape 。
- 若按下時同時按著其他鍵,就會是 Control 。
這應該是 Vim 和 Emacs 的最佳解了!(Emacs? Bash 的快捷鍵就是 Emacs 系列的)
- Send Escape if you tap Caps Lock alone.
Open ~/.mozilla/firefox/<your_profile>/chrome/userContent.css (create it if does not exist).
Paste the following content in it.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("chrome://browser/content/devtools/**/.*"){
.devtools-monospace {
font-family: Consolas, monospace !important;
font-size: 8pt !important;
}
}
| https://apple.stackexchange.com/questions/332769/macos-disable-popup-showing-accented-characters-when-holding-down-a-key | |
| # In macOS, when a key is held down while entering text, a popup is shown which lets one choose between various accented | |
| # forms of the character. To disable this execute the following command-line in the Terminal.app: | |
| defaults write -g ApplePressAndHoldEnabled -bool false | |
| # Now, you'll need to log-out and log back in. This should disable the display of the popup and character typed should | |
| # start repeating when the key is held down. |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| #!/bin/bash | |
| # 停用 唯讀模式 | |
| sudo steamos-readonly disable | |
| # 初始化 Pacman Keys | |
| sudo pacman-key --init | |
| sudo pacman-key --populate archlinux | |
| # 重新安裝 glibc | |
| sudo pacman -S glibc --noconfirm | |
| # 編輯 locale.gen | |
| sudo sed -i "s%#zh_TW.UTF-8 UTF-8%zh_TW.UTF-8 UTF-8%" /etc/locale.gen |
My rule of thumb to integrate a new tool to my daily workflow is to wait until I Google a tool to solve one of my problems, that repeat frequently enough, and then integrate it into my workflow. So, I would treat this list as an "exploration" step, and download the tools which you think are useful to your workflow.