Fix few problems in README

- fix broken markup in FAQ section;
 - remove extra indent in code snippets;
 - one grammar fix.
This commit is contained in:
streetturtle 2017-11-23 15:36:39 -05:00 committed by GitHub
parent c22a3fab64
commit 83b5158898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 65 additions and 65 deletions

View File

@ -162,7 +162,7 @@ local tyrannical = require("tyrannical")
--require("tyrannical.shortcut") --optional
```
Then this line have to be removed:
Then this line has to be removed:
```lua
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9" }, s, awful.layout.layouts[1])
@ -379,13 +379,13 @@ Tyrannical shares awful's tag list. It does not keep its own indexes since this
would make it harder to implement this feature in the core. Given that, this
feature is outside the project scope. That being said, nothing prevents you
from adding a "position" property to the tag. Once this is done, edit the
default ```rc.lua``` keybindings to find the position by looping the tags. In
default `rc.lua` keybindings to find the position by looping the tags. In
case the tag is not yet created, you can access it with
```tyrannical.tags_by_name["your tag name"]``` array. This array is
`tyrannical.tags_by_name["your tag name"]` array. This array is
automatically generated. You can then add it using
```awful.tag.add(tyrannical.tags_by_name["your tag
name"].name,tyrannical.tags_by_name["your tag name"])```. Tyrannical's purpose
is not to duplicate or change ```awful.tag``` behavior, it is simply a
`awful.tag.add(tyrannical.tags_by_name["your tag
name"].name,tyrannical.tags_by_name["your tag name"])`. Tyrannical's purpose
is not to duplicate or change `awful.tag` behavior, it is simply a
configuration wrapper.
#### Is it possible to change the layout when adding a new client?