jareogunprb18_ESO wrote: »(Can't go back to the bootcamp life).
$ sudo nvram boot-argsThis should tell you whether there is already a NVRAM variable called "boot-args" defined, and if there is, what value(s) it has. If there isn't, you'd see this:
nvram: Error getting variable - 'boot-args': (iokit/common) data was not foundIf there is, you can save its original value like this:
$ sudo nvram boot-args > ~/nv_boot_args.txtNow you can apply the above tweak:
$ sudo nvram boot-args=”iog=0×0″Be sure to include any other predefined values within the string " ", separated by spaces. If you want to reverse your change, you can simply type:
$ sudo nvram -d boot-argsif there weren't any predefined parameters, or
$ sudo nvram boot-args="`cat ~/nv_boot_args.txt`"if there were. (the ` ` are backticks, Shift-[´])
Mac notebooks: How to use your computer in closed clamshell (display closed) mode with an external displayIf you open the lid of your supported Mac notebook computer while in closed clamshell mode it may appear to have no video. This is expected behavior. When your computer is in closed clamshell mode the built-in display is disabled and all video memory is allocated to the external display for best performance.
Mac notebooks: How to use your computer in closed clamshell (display closed) mode with an external displayIf you open the lid of your supported Mac notebook computer while in closed clamshell mode it may appear to have no video. This is expected behavior. When your computer is in closed clamshell mode the built-in display is disabled and all video memory is allocated to the external display for best performance.
Therefore it 'should' not impact the VRAM. Unless I miss something.
So they seemed to have changed the internal handling of clamshell mode quite a bit, which might explain the reported FPS increase when disabling displays via the NVRAM tweak.If you open the lid of your supported Mac notebook computer while in closed clamshell mode, the display will flicker to a blue screen after a few moments then both displays will become active. Close the lid to return to closed clamshell mode.
KhajitFurTrader wrote: »Always happy to help.
You know, I've heard it said about IT guys that "they just google their answers". This is, of course, absolutely right. But what differentiates the professionals from the laymen is that the pros
- know what to google for,
- can quickly filter and classify the results,
- know how to adapt them to situations that differ from those found in the results.
Regarding the terminal, this is a very broad field. In a sense, the terminal, or shell, is *NIX, and *NIX is the shell. I learned using the shell mostly by doing, and I've been doing it since 1991 (VAX/VMS might have been involved at some point). If you want to learn about the OS X Terminal (which, by default, is just bash(1) on a BSD userland), I'd recommend this for starters, and this for advanced topics. Can't really go wrong with their books.
jareogunprb18_ESO wrote: »@KhajitFurTrader Hey, THANKS A MILLION! This boosted my FPS way high and for the first time I was able to actually fight without going "what the hell did I press". I get 20-44 FPS on all high. Thanks again
Btw, how did you learn the terminal commands or are you using some sort of residual linux knowledge (one IT guy to another). I've always wanted to learn the terminal
Thanks again mate!
man nvram