https://blog.csdn.net/whitehack/article/details/47074403/

VMWare 装mac os x 一个必备优化神器 beamoff

2015年07月26日 23:47:53 阅读数:62677 标签: vmwaremac os x优化 更多

个人分类: 杂谈
 

http://files.cnblogs.com/files/yipu/beamoff.zip

这个程序设置为登录启动比较好 
源码很简单:

//
// AppDelegate.m
// beamoff
//
// Created by ANDREI VAYAVODA on 09.11.14.
// Copyright (c) 2014 ANDREI VAYAVODA. All rights reserved.
// #import "AppDelegate.h"
extern void CGSSetDebugOptions(int);
extern void CGSDeferredUpdates(int); typedef enum {
disableBeamSync = 0,
automaticBeamSync = 1,
forcedBeamSyncMode = 2
} beamSyncMode; @interface AppDelegate () @property (weak) IBOutlet NSWindow *window;
@end @implementation AppDelegate - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
int mode = disableBeamSync; CGSSetDebugOptions(mode ? 0 : 0x08000000);
CGSDeferredUpdates(mode);
[self.window close];
[NSApp terminate:self];
} - (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
} @end
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

beamoff 在github 上的地址: 
https://github.com/JasF/beamoff

另外还有一个必须做的优化

另一个:

another:

这几步搞完以后,界面响应速度在我的pc上提升好几倍.

beamoff 设置为开机自动运行方法

04-25 11:07