diff --git a/README.md b/README.md index 9b3f720..4819c69 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ Here some of the things you may be interested in: - On the debug front, I am quite happy with `dbg()` in `rc/debug.lua`. +Also, I am using my custom terminal (`vbeterm`). You need to change +that in `rc.lua`. You can also find the sources on +[GitHub](https://github.com/vincentbernat/vbeterm). + Things in `lib/` are meant to be reused. I am using my own `loadrc()` function to load modules and therefore, I prefix my modules with `vbe/`. Before reusing a module, you may want to change this. Another diff --git a/rc.lua b/rc.lua index 4fb22e4..19ad21b 100644 --- a/rc.lua +++ b/rc.lua @@ -45,8 +45,8 @@ os.execute("test -d " .. awful.util.getdir("cache") .. -- Global configuration modkey = "Mod4" config = {} -config.terminal = "evilvte" -config.termclass = "Evilvte" +config.terminal = "vbeterm" +config.termclass = "Vbeterm" config.layouts = { awful.layout.suit.tile, awful.layout.suit.tile.left,