show widget on focused screen

This commit is contained in:
Pavel Makhov 2018-11-05 11:18:12 -05:00
parent fa5bec9fc4
commit 7b07eeed8f
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ local w = wibox {
height = 200,
width = 400,
ontop = true,
screen = mouse.screen,
expand = true,
bg = '#1e252c',
max_widget_size = 500
@ -64,7 +63,7 @@ watch('bash -c "free | grep -z Mem.*Swap.*"', 1,
ramgraph_widget:buttons(
awful.util.table.join(
awful.button({}, 1, function()
awful.placement.top_right(w, { margins = {top = 25, right = 10}})
awful.placement.top_right(w, { margins = {top = 25, right = 10}, parent = awful.screen.focused() })
w.pie.data_list = {
{'used ' .. getPercentage(used + used_swap), used + used_swap},
{'free ' .. getPercentage(free + free_swap), free + free_swap},