macOS skhd Hotkey 設定
剛好看到 Youtube: macOS: Essential Productivity Hacks for Developers 影片,裡面介紹了如何設定一些快捷鍵、virtual desktops、windows management 視窗管理,其中有一工具很符自己的使用需求 skhd:https://github.com/koekeishiya/skhd。 因為開的 APP 太多了,在沒有比較好 windows management 的情況下有時候找特定 APP 視窗會花費一些時間,e.g. 滲透測試的時候,要開 terminal 打 command + Burp Suite + 瀏覽器筆記+ visual studio + IM 軟體,時常在一分鐘之內可能就會頻繁切換,找來找去會浪費不少時間。 Install 安裝以後會寫入 plist 讓開機的時候自動啟動 brew install koekeishiya/formulae/skhd skhd --install-service skhd --start-service 依照 README 會依照以下路徑去讀取 config 檔案 $XDG_CONFIG_HOME/skhd/skhdrc $HOME/.config/skhd/skhdrc $HOME/.skhdrc Setup 在家目錄下面建立 .skhdrc 檔案 最實用的應該會是以下這些組合 hotkey = <mode> '<' <action> | <action> mode = 'name of mode' | <mode> ',' <mode> keysym = <mod> '-' <key> | <key> action = <keysym> ':' <command> 所以 alt 配上 c 就可以開啟 ‘Visual Studio Code’ 以此類推 ...