diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:16:54 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:16:54 +0530 |
| commit | 8ab1f8d796d8f35a65e38fdd03d51824a41d1dab (patch) | |
| tree | 6b7b9655e5a2e7f6fbc0e1b3bec66771e87a64f8 /init.lua | |
| parent | 2078c60477842d7cf6991148e23979565737a8b5 (diff) | |
| download | null-browser-8ab1f8d796d8f35a65e38fdd03d51824a41d1dab.tar.gz null-browser-8ab1f8d796d8f35a65e38fdd03d51824a41d1dab.zip | |
Add simple js rpc for decorations via custom scheme
Diffstat (limited to '')
| -rw-r--r-- | init.lua | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -68,12 +68,12 @@ end require 'null-browser.extras.tabline'.init() -- Decorations config -web.event.add_listener('WinCreated', { - callback = function(event) - web.decorations.bottom.enable({ win = event.win_id }) - start_clock(event.win_id) - end, -}) +-- web.event.add_listener('WinCreated', { +-- callback = function(event) +-- web.decorations.bottom.enable({ win = event.win_id }) +-- start_clock(event.win_id) +-- end, +-- }) web.keymap.set('n', '<space>gg', function() if web.decorations.bottom.is_enabled({ win = 0 }) then |
