Some changes a lot of people might like to make:
If you want the minimap in the bottom right corner, change in
rMinimap\rMinimap.lua
Minimap:SetPoint("Top",0,-15)
Minimap:SetPoint("Right",-15,0)
to
Minimap:SetPoint("BOTTOM",UIParent,"BOTTOM",-230,14);
Minimap:SetPoint("RIGHT",-15,0)
---------------
If you want the buffs to now be on the top right of your screen where the minimap used to be, change in
rBuff\rBuff.lua
TemporaryEnchantFrame:SetPoint("TOPRIGHT", Minimap, "TOPLEFT", -15, 0)
to
TemporaryEnchantFrame:SetPoint("Top", UIParent,"TOPRIGHT", -30, -10)
I'm pretty sure its working correctly :x
---------------
Now that LynStats is all out of place, change the following in
LynStats\core.lua:
local frame_anchor = "BOTTOMRIGHT"
local pos_x = -10
local pos_y = 10
and farther below:
self:SetPoint(frame_anchor, UIParent, frame_anchor, pos_x, pos_y)
to
local frame_anchor = "CENTER"
local pos_x = 0
local pos_y = 85
self:SetPoint(frame_anchor, Minimap, frame_anchor, pos_x, pos_y)