awesome/tests/examples/sequences/client/floating1.lua

35 lines
1.1 KiB
Lua

--DOC_GEN_IMAGE --DOC_NO_USAGE
local module = ... --DOC_HIDE
local awful = {tag = require("awful.tag"), layout = require("awful.layout")} --DOC_HIDE
require("awful.ewmh") --DOC_HIDE
screen[1]._resize {x = 0, width = 800, height = 600} --DOC_HIDE
awful.tag({ "one", "two", "three" }, screen[1], awful.layout.suit.tile) --DOC_HIDE
function awful.spawn(name) --DOC_HIDE
client.gen_fake{class = name, name = name, x = 10, y=10, width = 60, height =50} --DOC_HIDE
end --DOC_HIDE
module.add_event("Spawn some tiled apps", function() --DOC_HIDE
for i = 1, 5 do
awful.spawn("Client #"..i)
end
client.get()[1].color = "#f8dcdb" --DOC_HIDE
end) --DOC_HIDE
--DOC_NEWLINE
module.display_tags() --DOC_HIDE
module.add_event("Raise and un-tile", function() --DOC_HIDE
client.get()[1].floating = true
client.get()[1]:geometry {x= 100, y=150, width = 500, height = 300} --DOC_HIDE
client.get()[1]:raise()
end) --DOC_HIDE
module.display_tags() --DOC_HIDE
module.execute { display_screen = true , display_clients = true , --DOC_HIDE
display_label = false, display_client_name = true } --DOC_HIDE