码迷,mamicode.com
首页 > 其他好文 > 详细

优化神器 beamoff

时间:2017-08-07 22:15:38      阅读:666      评论:0      收藏:0      [点我收藏+]

标签:other   tde   nload   pretty   files   and   zip   deferred   defer   

http://files.cnblogs.com/files/yipu/beamoff.zip
csdn上有下载:http://download.csdn.net/download/bytige/8371825

这个程序设置为登录启动比較好
源代码非常easy:

//
//  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

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

另外另一个必须做的优化

“系统偏好设置” 进入”辅助功能” 然后勾选”降低透明度”
另一个:

“系统偏好设置”进入”Dock” 最小化窗体时使用: 选择“缩放效果”
another:

“系统偏好设置”进入”扩展”,然后将不使用的组件勾掉.
这几步搞完以后,界面响应速度在我的pc上提升好几倍.

beamoff 设置为开机自己主动执行方法

下载 http://files.cnblogs.com/files/yipu/beamoff.zip
mac会自己主动解压 得到 beamoff.app
系统偏好设置 - 用户与群组 - 选中你自己的username - 选择 “登录项” 选项卡 - 点 + 号
找到你下载的beamoff.app

优化神器 beamoff

标签:other   tde   nload   pretty   files   and   zip   deferred   defer   

原文地址:http://www.cnblogs.com/slgkaifa/p/7301187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!