add luakit
This commit is contained in:
parent
47838bbb09
commit
a6f87394db
6
Makefile
6
Makefile
|
@ -1,5 +1,6 @@
|
||||||
LOCATION="$(HOME)/.config"
|
LOCATION="$(HOME)/.config"
|
||||||
install: install_bspwm install_nvim install_sx install_sxhkd install_vimb install_zathura install_wyebadblock install_simplestatus install_bash install_ssh install_git environment
|
DATA="$(HOME)/.local/share"
|
||||||
|
install: install_bspwm install_nvim install_sx install_sxhkd install_vimb install_zathura install_wyebadblock install_simplestatus install_bash install_ssh install_git install_luakit environment
|
||||||
install_bspwm:
|
install_bspwm:
|
||||||
cp -r bspwm $(LOCATION)
|
cp -r bspwm $(LOCATION)
|
||||||
install_nvim:
|
install_nvim:
|
||||||
|
@ -22,5 +23,8 @@ install_ssh:
|
||||||
cp -r ssh $(LOCATION)
|
cp -r ssh $(LOCATION)
|
||||||
install_git:
|
install_git:
|
||||||
cp -r git $(LOCATION)
|
cp -r git $(LOCATION)
|
||||||
|
install_luakit:
|
||||||
|
cp -r luakit/config $(LOCATION)
|
||||||
|
cp -r luakit/data $(DATA)
|
||||||
environment:
|
environment:
|
||||||
sh environ
|
sh environ
|
||||||
|
|
|
@ -0,0 +1,189 @@
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
-- luakit configuration file, more information at https://luakit.github.io/ --
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
require "lfs"
|
||||||
|
|
||||||
|
-- Check for lua configuration files that will never be loaded because they are
|
||||||
|
-- shadowed by builtin modules.
|
||||||
|
table.insert(package.loaders, 2, function (modname)
|
||||||
|
if not package.searchpath then return end
|
||||||
|
local f = package.searchpath(modname, package.path)
|
||||||
|
if not f or f:find(luakit.install_paths.install_dir .. "/", 0, true) ~= 1 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local lf = luakit.config_dir .. "/" .. modname:gsub("%.","/") .. ".lua"
|
||||||
|
if f == lf then
|
||||||
|
msg.warn("Loading local version of '" .. modname .. "' module: " .. lf)
|
||||||
|
elseif lfs.attributes(lf) then
|
||||||
|
msg.warn("Found local version " .. lf
|
||||||
|
.. " for core module '" .. modname
|
||||||
|
.. "', but it won't be used, unless you update 'package.path' accordingly.")
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
require "unique_instance"
|
||||||
|
|
||||||
|
-- Set the number of web processes to use. A value of 0 means 'no limit'. This
|
||||||
|
-- has no effect since WebKit 2.26
|
||||||
|
luakit.process_limit = 4
|
||||||
|
-- Set the cookie storage location
|
||||||
|
soup.cookies_storage = luakit.data_dir .. "/cookies.db"
|
||||||
|
|
||||||
|
-- Load library of useful functions for luakit
|
||||||
|
local lousy = require "lousy"
|
||||||
|
|
||||||
|
-- Load users theme
|
||||||
|
-- ("$XDG_CONFIG_HOME/luakit/theme.lua" or "/etc/xdg/luakit/theme.lua")
|
||||||
|
lousy.theme.init(lousy.util.find_config("theme.lua"))
|
||||||
|
assert(lousy.theme.get(), "failed to load theme")
|
||||||
|
|
||||||
|
-- Load users window class
|
||||||
|
-- ("$XDG_CONFIG_HOME/luakit/window.lua" or "/etc/xdg/luakit/window.lua")
|
||||||
|
local window = require "window"
|
||||||
|
|
||||||
|
-- Load users webview class
|
||||||
|
-- ("$XDG_CONFIG_HOME/luakit/webview.lua" or "/etc/xdg/luakit/webview.lua")
|
||||||
|
local webview = require "webview"
|
||||||
|
|
||||||
|
-- Add luakit;//log/ chrome page
|
||||||
|
local log_chrome = require "log_chrome"
|
||||||
|
|
||||||
|
-- Load luakit binds and modes
|
||||||
|
local modes = require "modes"
|
||||||
|
local binds = require "binds"
|
||||||
|
|
||||||
|
local settings = require "settings"
|
||||||
|
require "settings_chrome"
|
||||||
|
|
||||||
|
----------------------------------
|
||||||
|
-- Optional user script loading --
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
-- Add adblock
|
||||||
|
local adblock = require "adblock"
|
||||||
|
local adblock_chrome = require "adblock_chrome"
|
||||||
|
|
||||||
|
local webinspector = require "webinspector"
|
||||||
|
|
||||||
|
-- Add uzbl-like form filling
|
||||||
|
local formfiller = require "formfiller"
|
||||||
|
|
||||||
|
-- Add proxy support & manager
|
||||||
|
local proxy = require "proxy"
|
||||||
|
|
||||||
|
-- Add quickmarks support & manager
|
||||||
|
local quickmarks = require "quickmarks"
|
||||||
|
|
||||||
|
-- Add session saving/loading support
|
||||||
|
local session = require "session"
|
||||||
|
|
||||||
|
-- Add command to list closed tabs & bind to open closed tabs
|
||||||
|
local undoclose = require "undoclose"
|
||||||
|
|
||||||
|
-- Add command to list tab history items
|
||||||
|
local tabhistory = require "tabhistory"
|
||||||
|
|
||||||
|
-- Add greasemonkey-like javascript userscript support
|
||||||
|
local userscripts = require "userscripts"
|
||||||
|
|
||||||
|
-- Add bookmarks support
|
||||||
|
local bookmarks = require "bookmarks"
|
||||||
|
local bookmarks_chrome = require "bookmarks_chrome"
|
||||||
|
|
||||||
|
-- Add download support
|
||||||
|
local downloads = require "downloads"
|
||||||
|
local downloads_chrome = require "downloads_chrome"
|
||||||
|
|
||||||
|
-- Add automatic PDF downloading and opening
|
||||||
|
local viewpdf = require "viewpdf"
|
||||||
|
|
||||||
|
-- Example using xdg-open for opening downloads / showing download folders
|
||||||
|
downloads.add_signal("open-file", function (file)
|
||||||
|
luakit.spawn(string.format("xdg-open %q", file))
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
|
||||||
|
-- Add vimperator-like link hinting & following
|
||||||
|
local follow = require "follow"
|
||||||
|
|
||||||
|
-- Add command history
|
||||||
|
local cmdhist = require "cmdhist"
|
||||||
|
|
||||||
|
-- Add search mode & binds
|
||||||
|
local search = require "search"
|
||||||
|
|
||||||
|
-- Add ordering of new tabs
|
||||||
|
local taborder = require "taborder"
|
||||||
|
|
||||||
|
-- Save web history
|
||||||
|
local history = require "history"
|
||||||
|
local history_chrome = require "history_chrome"
|
||||||
|
|
||||||
|
local help_chrome = require "help_chrome"
|
||||||
|
local binds_chrome = require "binds_chrome"
|
||||||
|
|
||||||
|
-- Add command completion
|
||||||
|
local completion = require "completion"
|
||||||
|
|
||||||
|
-- Press Control-E while in insert mode to edit the contents of the currently
|
||||||
|
-- focused <textarea> or <input> element, using `xdg-open`
|
||||||
|
local open_editor = require "open_editor"
|
||||||
|
|
||||||
|
-- NoScript plugin, toggle scripts and or plugins on a per-domain basis.
|
||||||
|
-- `,ts` to toggle scripts, `,tp` to toggle plugins, `,tr` to reset.
|
||||||
|
-- If you use this module, don't use any site-specific `enable_scripts` or
|
||||||
|
-- `enable_plugins` settings, as these will conflict.
|
||||||
|
--require "noscript"
|
||||||
|
|
||||||
|
local follow_selected = require "follow_selected"
|
||||||
|
local go_input = require "go_input"
|
||||||
|
local go_next_prev = require "go_next_prev"
|
||||||
|
local go_up = require "go_up"
|
||||||
|
|
||||||
|
-- Filter Referer HTTP header if page domain does not match Referer domain
|
||||||
|
require_web_module("referer_control_wm")
|
||||||
|
|
||||||
|
local error_page = require "error_page"
|
||||||
|
|
||||||
|
-- Add userstyles loader
|
||||||
|
local styles = require "styles"
|
||||||
|
|
||||||
|
-- Hide scrollbars on all pages
|
||||||
|
local hide_scrollbars = require "hide_scrollbars"
|
||||||
|
|
||||||
|
-- Add a stylesheet when showing images
|
||||||
|
local image_css = require "image_css"
|
||||||
|
|
||||||
|
-- Add a new tab page
|
||||||
|
local newtab_chrome = require "newtab_chrome"
|
||||||
|
|
||||||
|
-- Add tab favicons mod
|
||||||
|
local tab_favicons = require "tab_favicons"
|
||||||
|
|
||||||
|
-- Add :view-source command
|
||||||
|
local view_source = require "view_source"
|
||||||
|
|
||||||
|
-- Put "userconf.lua" in your Luakit config dir with your own tweaks; if this is
|
||||||
|
-- permanent, no need to copy/paste/modify the default rc.lua whenever you
|
||||||
|
-- update Luakit.
|
||||||
|
if pcall(function () lousy.util.find_config("userconf.lua") end) then
|
||||||
|
require "userconf"
|
||||||
|
end
|
||||||
|
|
||||||
|
-----------------------------
|
||||||
|
-- End user script loading --
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
-- Restore last saved session
|
||||||
|
local w = (not luakit.nounique) and (session and session.restore())
|
||||||
|
if w then
|
||||||
|
for i, uri in ipairs(uris) do
|
||||||
|
w:new_tab(uri, { switch = i == 1 })
|
||||||
|
end
|
||||||
|
else
|
||||||
|
-- Or open new window
|
||||||
|
window.new(uris)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- vim: et:sw=4:ts=8:sts=4:tw=80
|
|
@ -0,0 +1,70 @@
|
||||||
|
local select = require "select"
|
||||||
|
local settings = require "settings"
|
||||||
|
local modes = require "modes"
|
||||||
|
local msg = require "msg"
|
||||||
|
|
||||||
|
select.label_maker = function ()
|
||||||
|
local chars = charset("asdjkl")
|
||||||
|
return trim(sort(reverse(chars)))
|
||||||
|
end
|
||||||
|
|
||||||
|
local safe_mode = "S"
|
||||||
|
local images = "i"
|
||||||
|
|
||||||
|
-- enable/disable 'safe' mode
|
||||||
|
local function enable_disable_nonsafe_mode (opt)
|
||||||
|
local opts = {
|
||||||
|
"webview.allow_file_access_from_file_urls",
|
||||||
|
"webview.allow_modal_dialogs",
|
||||||
|
"webview.allow_universal_access_from_file_urls",
|
||||||
|
"webview.enable_accelerated_2d_canvas",
|
||||||
|
"webview.enable_fullscreen",
|
||||||
|
"webview.enable_html5_database",
|
||||||
|
"webview.enable_html5_local_storage",
|
||||||
|
"webview.enable_javascript",
|
||||||
|
"webview.enable_media_stream",
|
||||||
|
"webview.enable_offline_web_application_cache",
|
||||||
|
"webview.enable_webaudio",
|
||||||
|
"webview.enable_webgl",
|
||||||
|
"webview.javascript_can_access_clipboard",
|
||||||
|
"webview.javascript_can_open_windows_automatically",
|
||||||
|
}
|
||||||
|
|
||||||
|
for i = 1, #(opts) do
|
||||||
|
settings.override_setting(opts[i], opt)
|
||||||
|
end
|
||||||
|
|
||||||
|
if opt then
|
||||||
|
safe_mode = "s"
|
||||||
|
else
|
||||||
|
safe_mode = "S"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
modes.add_binds("normal", {
|
||||||
|
{ "sd", "Disable nonsafe mode", function ()
|
||||||
|
enable_disable_nonsafe_mode(false)
|
||||||
|
msg.debug("Disabled nonsafe mode")
|
||||||
|
end},
|
||||||
|
{ "se", "Enable nonsafe mode", function ()
|
||||||
|
enable_disable_nonsafe_mode(true)
|
||||||
|
msg.debug("Enabled nonsafe mode")
|
||||||
|
end},
|
||||||
|
})
|
||||||
|
|
||||||
|
local window = require "window"
|
||||||
|
|
||||||
|
window.add_signal("build", function (w)
|
||||||
|
local widgets, l, r = require "lousy.widget", w.sbar.l, w.sbar.r
|
||||||
|
|
||||||
|
-- Left-aligned status bar widgets
|
||||||
|
l.layout:pack(widgets.uri())
|
||||||
|
l.layout:pack(widgets.hist())
|
||||||
|
l.layout:pack(widgets.progress())
|
||||||
|
|
||||||
|
-- Right-aligned status bar widgets
|
||||||
|
r.layout:pack(widgets.buf())
|
||||||
|
r.layout:pack(widgets.ssl())
|
||||||
|
r.layout:pack(widgets.tabi())
|
||||||
|
r.layout:pack(widgets.scroll())
|
||||||
|
end)
|
|
@ -0,0 +1,41 @@
|
||||||
|
@-moz-document domain('stackoverflow.com'), domain('stackexchange.com') {
|
||||||
|
.bg-black-025.bc-black-100.js-dismissable-hero {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
noscript {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
body, .top-bar__network {
|
||||||
|
margin-top: 0em !important;
|
||||||
|
}
|
||||||
|
ol.list-reset {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
li.d-flex.ml8.mt16.mb4.jc-space-between {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
a#nav-collective-discover {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
li.fs-fine.tt-uppercase.ml8.mt16.mb4.fc-light {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
div.js-freemium-cta {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
a#nav-jobs, a#nav-companies, footer {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
div#content {
|
||||||
|
width: calc(100% - 110px) !important;
|
||||||
|
}
|
||||||
|
div#left-sidebar {
|
||||||
|
width: 110px !important;
|
||||||
|
}
|
||||||
|
div.s-btn-group, form#post-form {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
div.js-consent-banner {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{{
|
||||||
|
["domain"]={2},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
[""]={3},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
["webview.enable_javascript"]=false,
|
||||||
|
["webview.enable_html5_local_storage"]=false,
|
||||||
|
["webview.enable_offline_web_application_cache"]=false,
|
||||||
|
["webview.enable_fullscreen"]=false,
|
||||||
|
["webview.enable_html5_database"]=false,
|
||||||
|
["webview.user_agent"]="Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1",
|
||||||
|
["webview.enable_plugins"]=true,
|
||||||
|
["webview.enable_java"]=false,
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue