TimerStart(CreateTimer(), 0, false, function()
-- move the background out of the top screen, will also move the hero icons up
local frame = BlzGetFrameByName("ConsoleUI", 0)
--BlzFrameSetAbsPoint(frame, FRAMEPOINT_TOPLEFT, 0.0, 0.67) -- to high
BlzFrameSetAbsPoint(frame, FRAMEPOINT_TOPLEFT, 0.0, 0.6265)
-- hide the resources top right, this also hides /apm, /ping /fps
frame = BlzGetFrameByName("ResourceBarFrame", 0)
BlzFrameSetVisible(frame, false)
-- hide the Top Left
frame = BlzGetFrameByName("UpperButtonBarFrame", 0)
BlzFrameSetVisible(frame, false)
print("Done")
end)