Open SIR-unit opened 2 years ago
Based on some things I read, I infered that the "standard" way to add plugins is to clone them into ~/.config/luakit/plugins. I did this and changed my userconf.lua to just require "plugins.luakit-pass"
. This gave the same result
Sorry, I haven't used luakit in quite some time now. You may want to check that the config fields are correct (which you can set on the module returned by require
) - particularly check the path to pass
? Running luakit in a terminal that makes it easy to see log messages might also help tell you what's wrong.
Thanks. I was able to change executable from "/usr/bin/pass" to "pass" and now I can see passwords with :pshow. However, :pass doesn't seem to be able to fill that data into any webpage :(
Yeah, I expected that to be a problem. Notice how this require does not say "plugins.luakit-pass.wm"
. You could:
pass
directly into ~/.config/luakig
instead of under plugins
(and remove the luakit-
prefix)package.path
in your luakit config to help it find passBased on some things I read, I infered that the "standard" way to add plugins is to clone them into ~/.config/luakit/plugins. I did this and changed my userconf.lua to just
require "plugins.luakit-pass"
.
afaik this is standard practice for using the luakit-plugins repo, not necessarily for luakit plugins in general.
moving init.lua and wm.lua to .config/luakit/pass did the job. Password filling now works as expected! Thanks.
I go to a site and type ":pass", and it fails with the error in the title. luakit-pass finds the correct entry (as [passentry] is correct), but I don't get a pinentry prompt. It could be that I have not installed it properly? The readme isn't really clear. I tried the following ~/.config/luakit/userconf.lua files:
and
I'm trying to get this to work to dicide if switching to luakit is worth it, so I'm not very familiar with lua
NOTE: running pass anywhere else works fine (emacs, tty, terminal emulator, qutebrowser)