Add more documentation about how to use the settings

This commit is contained in:
Emmanuel Lepage Vallee 2013-08-08 18:31:44 -04:00
parent 417c962a78
commit 83a69e0b19
2 changed files with 7 additions and 0 deletions

View File

@ -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 |
| **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.
-----------------------------------------------------

View File

@ -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 = {
{
name = "Term", -- Call the tag "Term"
@ -156,6 +160,7 @@ tyrannical.properties.centered = {
"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}