
Mac
Mac相关
Prosper Lee
谁又能来拯救我这灰暗的人生呢……
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mac(三):修改Launchpad(启动台)图标行列数以调整图标尺寸
修改行defaults write com.apple.dock springboard-rows -int 6修改列defaults write com.apple.dock springboard-columns -int 7重启killall Dock查看6行7列原创 2022-06-26 15:52:25 · 1391 阅读 · 0 评论 -
Mac(二):AppleScript实现在当前位置创建文件
展示可以结合 BetterAndBetter 进行快捷操作使用源码tell application "Finder" to set currentFolder to insertion location as aliasset newfilename to ""display dialog "请输入完整的文件名" default answer newfilename buttons {"取消", "确定"} default button 2if button returned of res原创 2022-06-26 15:51:12 · 1114 阅读 · 2 评论 -
Mac(一):Mac脚本编辑器 - AppleScript实现打开终端并执行打开Android模拟器的命令
废话不多说,直接上才艺tell application "iTerm" activate create window with default profile command "~/Library/Android/sdk/emulator/emulator @AVD"end telltell application "Terminal" activate do script "~/Library/Android/sdk/emulator/emulator @AVD"end tell//原创 2022-06-26 15:50:46 · 2839 阅读 · 1 评论