module RTUI::TTY

def default_width

def default_width
  stty = `stty size`
  if stty =~ /^\d+ \d+/
    stty.split[1].to_i
  else
    80
  end
end