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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
-
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; }
}