aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--init.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index ae1f181..4b84113 100644
--- a/init.lua
+++ b/init.lua
@@ -56,9 +56,15 @@ web.event.add_listener('NotificationReceived', {
-- Tabline
require 'null-browser.extras.tabline'.init {
- decoration = web.decorations.top,
+ decoration = web.decorations.left,
}
+web.event.add_listener('WinCreated', {
+ callback = function(event)
+ web.decorations.left.set_size(200, { win = event.win_id })
+ end,
+})
+
-- Statusline
require 'null-browser.extras.statusline'.init {
decoration = web.decorations.bottom,