This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Store HTTP basic auth credentials in a SQLite database. | |
-- Author: Justin Forest <[email protected]> | |
local io = io | |
local capi = { luakit = luakit, soup = soup, sqlite3 = sqlite3 } | |
local info = info | |
local warn = warn | |
local lousy = require "lousy" | |
local sql_escape = lousy.util.sql_escape | |
local parse_uri = lousy.uri.parse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Zoom level indicator widget. | |
-- Displays current view zoom level, unless it's 100%. | |
-- Author: Justin Forest <[email protected]> | |
local capi = { luakit = luakit, soup = soup } | |
local string = string | |
local theme = theme | |
local webview = webview | |
local widget = widget | |
local window = window |