terminal: switch to my own custom terminal

This commit is contained in:
Vincent Bernat 2014-09-25 12:00:15 +02:00
parent e3f653acb5
commit 1d38a56327
2 changed files with 6 additions and 2 deletions

View file

@ -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 - On the debug front, I am quite happy with `dbg()` in
`rc/debug.lua`. `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()` 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 function to load modules and therefore, I prefix my modules with
`vbe/`. Before reusing a module, you may want to change this. Another `vbe/`. Before reusing a module, you may want to change this. Another

4
rc.lua
View file

@ -45,8 +45,8 @@ os.execute("test -d " .. awful.util.getdir("cache") ..
-- Global configuration -- Global configuration
modkey = "Mod4" modkey = "Mod4"
config = {} config = {}
config.terminal = "evilvte" config.terminal = "vbeterm"
config.termclass = "Evilvte" config.termclass = "Vbeterm"
config.layouts = { config.layouts = {
awful.layout.suit.tile, awful.layout.suit.tile,
awful.layout.suit.tile.left, awful.layout.suit.tile.left,