Skip to content

Instantly share code, notes, and snippets.

@matthewtodd
Created December 4, 2010 07:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save matthewtodd/728014 to your computer and use it in GitHub Desktop.
Save matthewtodd/728014 to your computer and use it in GitHub Desktop.
Resize an OSX display with RubyCocoa.
require 'osx/cocoa'
class Screen
class << self
def resize(width, height, &block)
new.resize(width, height, &block)
end
end
def initialize(screen = OSX::CGMainDisplayID())
@screen = screen
@mode = OSX::CGDisplayCopyDisplayMode(@screen)
end
def resize(width, height, &block)
configure(best_mode(width, height))
block.call
ensure
configure(@mode)
end
private
def best_mode(width, height)
# TODO Try to figure out color depth from CGDisplayModeCopyPixelEncoding?
OSX::CGDisplayCopyAllDisplayModes(@screen, nil).detect do |mode|
OSX::CGDisplayModeGetWidth(mode) == width &&
OSX::CGDisplayModeGetHeight(mode) == height &&
OSX::CGDisplayModeIsUsableForDesktopGUI(mode)
end
end
def configure(mode)
result, config = OSX::CGBeginDisplayConfiguration()
if result == OSX::KCGErrorSuccess
OSX::CGConfigureDisplayWithDisplayMode(config, @screen, mode, nil)
OSX::CGCompleteDisplayConfiguration(config, OSX::KCGConfigureForSession)
else
raise "I have no clue what just happened: #{result}"
end
end
end
@grillermo
Copy link

I would love to see usage in ruby, i'm unsure of the syntax expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment