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:
parent
c22a3fab64
commit
83b5158898
12
README.md
12
README.md
|
@ -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?
|
||||
|
|
Loading…
Reference in New Issue