优化神器 beamoff
生活随笔
收集整理的這篇文章主要介紹了
优化神器 beamoff
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 存储系统设计——NVMe SSD性能影响
- 下一篇: JS简单应用之截取字符串函数以及repl