Mac實用工具
最近從Ubuntu換到Mac,記錄一下一些實用的工具:
- Sublime Text 2: 好用的文字編輯器,拿來寫前端網頁很方便,輕量又高效。
- VirtualBox: 虛擬電腦。
- LibreOffice: 文書軟體。
- zsh: 好用的shell。
Ubuntu:
- Clipit: 好用的剪貼簿軟體,沒有中文相容的問題,有static項目可以儲存常用資料。
- GoldenDict: 字典,可以匯入詞典和線上查詢,有劃詞翻譯的功能。
- DeaDBeef: 音樂播放軟體。
- Pidgin: 聊天軟體。
- autokey: text expansion。
- ReText: MarkDown編輯器。
- Everpad: Evernote。
- Ubuntu-GNOME: 慣用的桌面。
Mac:
- ShiftIt: 視窗管理軟體,可以用熱鍵將視窗最大化,垂直/水平排列。
- ClipMenu: 剪貼簿軟體,可以設定snippets。
- DictUnifier: 字典轉換軟體,可以擴充字典庫。
- CheatSheet: 長按command鍵可以出現應用程式熱鍵提示。
- Paragon NTFS: 如果隨身碟是NTFS格式需要安裝這應用才能寫入,收費軟體。
- Jing: 螢幕截圖軟體。
- AppCleaner: 移除程式軟體,可以偵測關聯的檔案一併刪除。
- KeKa: 壓縮/解壓縮軟體。
- StuffIt Expander: 解壓縮軟體。
- Alfred: 快速搜尋並執行應用程式。
- Homebrew: 套件管理程式。
- Mou: MarkDown編輯器。
- iTerm 2: 好用的Terminal。
另外finder沒有可以選擇顯示隱藏檔的設定,可以在appleScript寫入以下內容,儲存為應用程式,拉到finder功能列作使用(參考來源):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | set question to display dialog "Show or hide hidden files?" & return & "Don't that forget this will relaunch Finder." buttons {"Show hidden files", "Hide hidden files", "Cancel"} set theAnswer to button returned of result if theAnswer is "Show hidden files" then do shell script "defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder" end if if theAnswer is "Hide hidden files" then do shell script "defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder" end if if theAnswer is "Cancel" then return end if |