mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-06 15:49:19 +01:00
18 lines
498 B
Text
18 lines
498 B
Text
-- <! tmpl:setPostProcessor(opt.luaCompile) !>
|
|
local lfs = require "lfs"
|
|
|
|
require("modes").add_cmds {
|
|
{
|
|
":update-ab",
|
|
[[Update the adblocker lists]],
|
|
function(w)
|
|
local home = os.getenv "HOME"
|
|
|
|
lfs.mkdir(home .. "/.local/share/luakit/adblock/")
|
|
|
|
require("downloads").add("https://easylist.to/easylist/easylist.txt", {
|
|
filename = home .. "/.local/share/luakit/adblock/easylist.txt",
|
|
})
|
|
end,
|
|
},
|
|
}
|