今天更新了IntelliJ IDEA 13,发现Genymotion的工具栏按钮不见了。其实这并不是插件不兼容IntelliJ IDEA 13,在View里显示工具栏就行了。鼠标和GUI的确是效率的大敌,让我们用command line嘲讽它们。
所谓的Genymotion插件其实也没什么了不起的,也就是提供一个快速启动虚拟机的按钮而已,根本不值得花功夫安装一整个插件。这个按钮大概也是对命令行的简化吧。
来看看Genymotion的命令行:
The command line you need to launch is:
player --vm-name <VM id | VM name>The VMs id and name can be found from command line using this code:
VBoxManage list vmsIt displays a list of your Virtual Box machines on this format:
name {id}
.
于是一段一键启动.cmd:
"X:\Program Files\Genymobile\Genymotion\player.exe" --vm-name "Galaxy Nexus - 4.2.2 - API 17 - 720x1280"
这段命令行启动后会留下dos窗口,怪难看的,于是进化一个vbs:
CreateObject("wscript.shell").run """X:\Program Files\Genymobile\Genymotion\player.exe"" --vm-name ""Galaxy Nexus - 4.2.2 - API 17 - 720x1280""",0
进化的vbs不奏效啊
缓存