presets   chat   music   threads  
How to get the old eq UI back
deer

If you wanna make the UI look like this:

Make a new file /var/tweak/com.r333d.eqe/lua/autorun/core/graphiceq.lua and put this code inside it:

eqe.getbands = function()
    local ans = {}

    table.insert(ans, {k = 'preamp', v = eqe.preamp, i = 0})

    for i=1,FILTER_COUNT() do
        local band = FILTER_GET(i)

        if band.class.gain then
            table.insert(ans, {k = 'gain', v = band.gain, i = i})
        else
            table.insert(ans, {k = 'Q', v = band.Q, i = i})
            table.insert(ans, {k = 'frequency', v = band.frequency, i = i})
        end
    end

    return ans
end

Then kill mediaserverd.

It basically hides the Q and frequency sliders.


Insidide

Thanx man!!


MrBragg

I feel like this should be a toggle, like it was before.....


Nhonickman

How do we create the the Lua


deer

Here's a video tutorial


deer

bump


deer

bump


deer

bump