mirror of https://github.com/lcpz/lain.git
This commit is contained in:
parent
03cd1abf3c
commit
741b65d5ea
|
@ -31,7 +31,7 @@ Just make sure that:
|
||||||
|
|
||||||
- Your code fits with the general style of the module. In particular, you should use the same indentation pattern that the code uses, and also avoid adding space at the ends of lines.
|
- Your code fits with the general style of the module. In particular, you should use the same indentation pattern that the code uses, and also avoid adding space at the ends of lines.
|
||||||
|
|
||||||
- Your code its easy to understand, maintainable, and modularized. You should also avoid code duplication wherever possible by adding functions or using ``lain.helpers``. If something is unclear, and you can't write it in such a way that it will be clear, explain it with a comment.
|
- Your code its easy to understand, maintainable, and modularized. You should also avoid code duplication wherever possible by adding functions or using lain.helpers_. If something is unclear, and you can't write it in such a way that it will be clear, explain it with a comment.
|
||||||
|
|
||||||
- You test your changes before submitting to make sure that not only your code works, but did not break other parts of the module too!
|
- You test your changes before submitting to make sure that not only your code works, but did not break other parts of the module too!
|
||||||
|
|
||||||
|
@ -51,3 +51,4 @@ Screenshots
|
||||||
.. _awesome-vain: https://github.com/vain/awesome-vain
|
.. _awesome-vain: https://github.com/vain/awesome-vain
|
||||||
.. _Awesome: https://github.com/awesomeWM/awesome
|
.. _Awesome: https://github.com/awesomeWM/awesome
|
||||||
.. _wiki: https://github.com/copycat-killer/lain/wiki
|
.. _wiki: https://github.com/copycat-killer/lain/wiki
|
||||||
|
.. _lain.helpers: https://github.com/copycat-killer/lain/blob/master/helpers.lua
|
||||||
|
|
|
@ -98,7 +98,7 @@ end
|
||||||
|
|
||||||
function quake:compute_size()
|
function quake:compute_size()
|
||||||
local geom
|
local geom
|
||||||
if self.skip_wibox then
|
if not self.overlap then
|
||||||
geom = screen[self.screen].workarea
|
geom = screen[self.screen].workarea
|
||||||
else
|
else
|
||||||
geom = screen[self.screen].geometry
|
geom = screen[self.screen].geometry
|
||||||
|
@ -119,15 +119,15 @@ end
|
||||||
function quake:new(config)
|
function quake:new(config)
|
||||||
local conf = config or {}
|
local conf = config or {}
|
||||||
|
|
||||||
conf.app = conf.app or "xterm" -- application to spawn
|
conf.app = conf.app or "xterm" -- application to spawn
|
||||||
conf.name = conf.name or "QuakeDD" -- window name
|
conf.name = conf.name or "QuakeDD" -- window name
|
||||||
conf.argname = conf.argname or "-name %s" -- how to specify window name
|
conf.argname = conf.argname or "-name %s" -- how to specify window name
|
||||||
conf.extra = conf.extra or "" -- extra arguments
|
conf.extra = conf.extra or "" -- extra arguments
|
||||||
conf.visible = conf.visible or false -- initially not visible
|
conf.border = conf.border or 1 -- client border width
|
||||||
conf.border = conf.border or 1 -- client border width
|
conf.visible = conf.visible or false -- initially not visible
|
||||||
conf.followtag = conf.followtag or true -- spawn on currently focused screen
|
conf.followtag = conf.followtag or false -- spawn on currently focused screen
|
||||||
conf.skip_wibox = conf.skip_wibox or true -- skip the wibox (defaut) or overlap it
|
conf.overlap = conf.overlap or false -- overlap wibox
|
||||||
conf.screen = conf.screen or awful.screen.focused()
|
conf.screen = conf.screen or awful.screen.focused()
|
||||||
|
|
||||||
-- If width or height <= 1 this is a proportion of the workspace
|
-- If width or height <= 1 this is a proportion of the workspace
|
||||||
conf.height = conf.height or 0.25 -- height
|
conf.height = conf.height or 0.25 -- height
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit b0e838ade84ae851bceb2479bb16c1447057abb7
|
Subproject commit 006cb79c302aef03dd064430dd2ceba2689dacc7
|
Loading…
Reference in New Issue