Skip to content

[HELP] Polybar custom modules stop responding after initial left-click interaction in AwesomeWM #2967

Answered by SoulThy
SoulThy asked this question in Q&A
Discussion options

You must be logged in to vote

My Solution

I managed to fix this issue by modifying the awesome/rc.lua (awesomeWM config file). Previously, the code in the file was:

Clientbuttons = gears.table.join(
    awful.button({}, 1, function(c)
        c:emit_signal("request::activate", "mouse_click", { raise = true })
    end),
    awful.button({ modkey }, 1, function(c)
        c:emit_signal("request::activate", "mouse_click", { raise = true })
        awful.mouse.client.move(c)
    end),
    awful.button({ modkey }, 3, function(c)
        c:emit_signal("request::activate", "mouse_click", { raise = true })
        awful.mouse.client.resize(c)
    end)
)

I made the following modifications to the code:

Clientbuttons = gears.table.

Replies: 4 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@patrick96
Comment options

Comment options

You must be logged in to vote
1 reply
@patrick96
Comment options

Comment options

You must be logged in to vote
1 reply
@juanibiapina
Comment options

Answer selected by SoulThy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants