geometry
This commit is contained in:
parent
c1bd3fddd0
commit
5dc771cdc4
11
geoms.lua
11
geoms.lua
|
@ -13,6 +13,14 @@ geoms.crt43 = function ()
|
|||
end --|awful.screen.focused().workarea.y is required for
|
||||
--|multiple monitors to relocate properly.
|
||||
|
||||
geoms.narrow = function ()
|
||||
return {
|
||||
width=900,
|
||||
height=1200,
|
||||
}
|
||||
end --|awful.screen.focused().workarea.y is required for
|
||||
--|multiple monitors to relocate properly.
|
||||
|
||||
geoms.p1080 = function ()
|
||||
return {
|
||||
width=awful.screen.focused().workarea.width * 0.65,
|
||||
|
@ -74,7 +82,8 @@ geoms.clients = {}
|
|||
geoms.clients["Subl"] = geoms.p1280
|
||||
geoms.clients["Cudatext"] = geoms.crt43
|
||||
geoms.clients["Byobu"] = geoms.p720
|
||||
geoms.clients["Krom"] = geoms.crt43
|
||||
geoms.clients["Krom"] = geoms.narrow
|
||||
geoms.clients["Emacs"] = geoms.crt43
|
||||
geoms.clients["Google-chrome"] = geoms.crt43
|
||||
|
||||
|
||||
|
|
2
init.lua
2
init.lua
|
@ -73,7 +73,7 @@ local bindings = {
|
|||
--▨ swap
|
||||
|
||||
awful.key({modkey}, "'", function ()
|
||||
naughty.notify({text=inspect(client.focus.transient_for.screen)})
|
||||
naughty.notify({text=inspect(client.focus.transient_for)})
|
||||
end),
|
||||
--▨ shuffle
|
||||
|
||||
|
|
|
@ -1229,7 +1229,7 @@ end
|
|||
------------------------------------------------------ signal helpers -- ;
|
||||
|
||||
local function manage_signal(c)
|
||||
reset_all_clients(s)
|
||||
-- reset_all_clients(s)
|
||||
--|reset hack, we shouldn't need this in the second write
|
||||
--|up.
|
||||
|
||||
|
|
Loading…
Reference in New Issue