uh-wm/lib/uh/wm/cli.rb
2015-04-07 10:35:52 +00:00

16 lines
283 B
Ruby

module Uh
module WM
class CLI
class << self
def run! arguments
$stdout.sync = true
@display = Display.new
@display.open
puts "Connected to X server on `#{display}'"
sleep 8
end
end
end
end
end