30 lines
1016 B
Lua
30 lines
1016 B
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 = 160, height = 90} --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, floating = true} --DOC_HIDE
|
|
end --DOC_HIDE
|
|
|
|
module.add_event("Spawn a client", function() --DOC_HIDE
|
|
awful.spawn("") --DOC_HIDE
|
|
|
|
client.get()[1].color = "#ff777733" --DOC_HIDE
|
|
|
|
end) --DOC_HIDE
|
|
|
|
--DOC_NEWLINE
|
|
module.display_tags() --DOC_HIDE
|
|
|
|
module.add_event("Change the `height` property", function() --DOC_HIDE
|
|
client.focus.height = 100
|
|
end) --DOC_HIDE
|
|
|
|
module.display_tags() --DOC_HIDE
|
|
|
|
module.execute { display_screen = false, display_clients = true , --DOC_HIDE
|
|
display_label = false, display_client_name = true } --DOC_HIDE
|