Add more documentation about how to use the settings
This commit is contained in:
parent
417c962a78
commit
83a69e0b19
|
@ -198,6 +198,8 @@ Then edit this section to fit your needs.
|
||||||
| **group_children** | Add dialogs to the same tags as their parent client | boolean |
|
| **group_children** | Add dialogs to the same tags as their parent client | boolean |
|
||||||
| **mwfact** | The default master/slave ratio | float (0-1) |
|
| **mwfact** | The default master/slave ratio | float (0-1) |
|
||||||
|
|
||||||
|
It's worth noting that some settings like `mwfact` and `default_layout` should
|
||||||
|
be set **before** the tag arrow. Otherwise they wont take effect at startup.
|
||||||
|
|
||||||
-----------------------------------------------------
|
-----------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,11 @@ local layouts =
|
||||||
}
|
}
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
-- First, set some settings
|
||||||
|
tyrannical.settings.default_layout = awful.layout.suit.tile.left
|
||||||
|
tyrannical.settings.mwfact = 0.66
|
||||||
|
|
||||||
|
-- Setup some tags
|
||||||
tyrannical.tags = {
|
tyrannical.tags = {
|
||||||
{
|
{
|
||||||
name = "Term", -- Call the tag "Term"
|
name = "Term", -- Call the tag "Term"
|
||||||
|
@ -156,6 +160,7 @@ tyrannical.properties.centered = {
|
||||||
"kcalc"
|
"kcalc"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Do not honor size hints request for those classes
|
||||||
tyrannical.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
tyrannical.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue