Specify `lua` in markdown

This commit is contained in:
Stefano Mazzucco 2016-10-21 23:20:43 +01:00
parent 5ce56e036f
commit def950de4c
1 changed files with 9 additions and 5 deletions

View File

@ -88,14 +88,18 @@ Add the following to your `~/.config/awesome/rc.lua`:
Require the module:
-- require *after* `beautiful.init` or the theme will be inconsistent!
local connman = require("connman_widget")
-- override the GUI client.
connman.gui_client = "wicd"
```lua
-- require *after* `beautiful.init` or the theme will be inconsistent!
local connman = require("connman_widget")
-- override the GUI client.
connman.gui_client = "wicd"
```
Add the widget to your layout:
right_layout:add(connman)
```lua
right_layout:add(connman)
```
# Limitations