From def950de4c17479c5afb6fda64db16c7f016dcbd Mon Sep 17 00:00:00 2001 From: Stefano Mazzucco Date: Fri, 21 Oct 2016 23:20:43 +0100 Subject: [PATCH] Specify `lua` in markdown --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4cb7416..1f9155a 100644 --- a/README.md +++ b/README.md @@ -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