mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-13 18:28:50 +01:00
awesome config
This commit is contained in:
parent
5452b6fe9c
commit
8869cd570c
@ -81,6 +81,11 @@ awful.layout.layouts = {
|
|||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- {{{ Helper functions
|
-- {{{ Helper functions
|
||||||
|
|
||||||
|
local function tableHasKey(table,key)
|
||||||
|
return table[key] ~= nil
|
||||||
|
end
|
||||||
|
|
||||||
local function client_menu_toggle_fn()
|
local function client_menu_toggle_fn()
|
||||||
local instance = nil
|
local instance = nil
|
||||||
|
|
||||||
@ -464,14 +469,18 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
|
|||||||
|
|
||||||
client.disconnect_signal("request::activate", awful.ewmh.activate)
|
client.disconnect_signal("request::activate", awful.ewmh.activate)
|
||||||
function awful.ewmh.activate(c)
|
function awful.ewmh.activate(c)
|
||||||
|
if tableHasKey(c,"class") == false then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if c:isvisible() then
|
if c:isvisible() then
|
||||||
if c.class:lower() ~= "gsnotify-arm" then
|
if c.class:lower() ~= "gsnotify-arm" then
|
||||||
client.focus = c
|
client.focus = c
|
||||||
end
|
end
|
||||||
|
|
||||||
if c.class:lower() == "retroarch" then
|
if c.class:lower() == "retroarch" then
|
||||||
c:lower()
|
c:lower()
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user