local width, height = term.getSize()

-- find peripheral using type
function find(type)
  for _,name in peripheral.getNames()
    if peripheral.getType(name) then
      return peripheral.wrap(name)
    end
  end
end

-- wrap all the things
local interface = find("me_interface")
local inoculator = find("peripheral")

-- create top bar


