Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martingabelmann/luakit
speeddial, pdf-inline-viewer
https://github.com/martingabelmann/luakit
Last synced: 29 days ago
JSON representation
speeddial, pdf-inline-viewer
- Host: GitHub
- URL: https://github.com/martingabelmann/luakit
- Owner: martingabelmann
- Created: 2015-05-09T20:42:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-06T10:15:41.000Z (over 9 years ago)
- Last Synced: 2024-10-16T12:07:52.294Z (3 months ago)
- Language: Lua
- Homepage:
- Size: 188 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Luakit
My personal LuaKit config# Features
- Speeddial (like Opera-Speeddial), where you have no need to touch any files to add new entries
- see `speeddial.lua`
- inline PDF viewer (realized with gview-api)
```lua
webview.init_funcs.pdfview = function (view, w)
view:add_signal("navigation-request", function (v, uri)
if string.sub(string.lower(uri), -4) == ".pdf" then
local url ="http://docs.google.com/gview?url="
url = url .. uri
url = url .. "&embedded=false"
w:navigate(w:search_open(url))
end
end)
end
```
- many standard plugins like: noscript, useragent-fake...