Open links by xdg-open instead of chrome

This commit is contained in:
Pavel Makhov 2019-11-14 22:31:15 -05:00
parent 63d3c3dd1d
commit 7478043604
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ local function worker(args)
} }
row:connect_signal("button::release", function(_, _, _, button) row:connect_signal("button::release", function(_, _, _, button)
spawn.with_shell("google-chrome " .. item.link) spawn.with_shell("xdg-open " .. item.link)
popup.visible = false popup.visible = false
end) end)