Code Monkey home page Code Monkey logo

Comments (5)

lcpz avatar lcpz commented on May 24, 2024

This was proposed as a separate widget in #534, which resulted in a simple watch recipe: awesomeWM/awesome-www#167

Does that satisfy your use case?

from lain.

lcpz avatar lcpz commented on May 24, 2024

I think it does. Closing for inactivity. Feel free to comment back if you want to resume the conversation.

from lain.

basiliscos avatar basiliscos commented on May 24, 2024

Hi, thank you for the advice. It would be nice to have something like that integrated into lain to let it work transparently, independently from puplse/pipewire.

Here is my custom widget, which might be useful for somebody

-- pipewire
local volume = wibox.widget{
    markup = '[?]',
    align  = 'center',
    valign = 'center',
    widget = wibox.widget.textbox
}
local volume_update = function()
    local cmd = [[pactl get-sink-volume @DEFAULT_SINK@ | cut -s -d/ -f2,4; pactl get-sink-mute @DEFAULT_SINK@]]
    awful.spawn.easy_async_with_shell(cmd, function(stdout, stderr, reason, exit_code)
        local values = {}
        for v in stdout:gmatch("(%d+%%)") do table.insert(values, v) end
        local value = "N/A";
        if ((#values == 2) and (values[1] == values[2])) then value = values[1] end
        if (#values == 1) then value = values[1] end
        local muted = string.find(stdout, "Mute: yes")
        local color = muted and '#FF0000' or '#00FFFF'
        volume.markup = string.format("[%s] ", markup.fg.color(color, value))
    end)
end
local volume_timer = gears.timer {
    timeout   = 5,
    call_now  = true,
    autostart = true,
    callback  = volume_update
}

from lain.

lcpz avatar lcpz commented on May 24, 2024

Thank you for sharing your custom recipe.

It would be nice to have something like that integrated into lain to let it work transparently, independently from puplse/pipewire.

To satisfy your request, we could simply add a check, and then switch between the standard widget, or a variant similar to your recipe.

But this would create a catch-them-all approach, which goes against the simplicity principle I try to follow.

This is the rationale behind removing some lain widgets in favor of recipes, which are more maintainable.

My suggestion: if you have to switch between pulse and pipewire, then it's easy to implement the logic above in your configurations.

Otherwise, just use the widget you need.

from lain.

Universebenzene avatar Universebenzene commented on May 24, 2024

I also tried a "pipewire bar" widget like the alsabar and pulsebar here.

from lain.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.