<sewn>
me watching a kiss contributor make a PR in cports after months of no activity
<sewn>
hehehhehehe
midfavila has quit [K-Lined]
EliSoli has joined #kisslinux
sjalv has quit [Ping timeout: 240 seconds]
EliSoli has quit [Ping timeout: 250 seconds]
sjalv has joined #kisslinux
midfavila has joined #kisslinux
drmcstsr has joined #kisslinux
<drmcstsr>
Hello everyone! I am currently trying to integrate a simple wrapper script for pash into dwm and i am stuck on a strange issue and would appreciate any help
<drmcstsr>
the script in question:
<drmcstsr>
st pash c $(pash l |dmenu -b)
<drmcstsr>
it works just fine from the terminal
<drmcstsr>
but it fails to copy into the clipboard if called as a dwm function
drmcstsr has quit [Quit: Client closed]
drmcstsr has joined #kisslinux
<dery>
hi drmcstsr
<dery>
what's pash?
<dery>
oh I the password manager
<dery>
maybe you need to quote the command?
<dery>
like, st "pash c $(pash l | dmenu -b)"
<dery>
also have you tried to run the command from `sh`? Maybe you're running the command from a non-posix interpreter while sh is or viceversa
<dery>
also st is a terminal emulator right? why do you need to run it from there?
<dery>
maybe you meant to do `sh -c "pash c $(pash l | dmenu -b)"`?
<dery>
sorry I'm not experienced with either dwm or pash but I guess that it's probably a scripting problem, for which I can help
<drmcstsr>
i don't think that such quotation is needed and dwm uses sh by default
<drmcstsr>
i do need to use it from terminal window since it will ask for a gpg passphrase
<drmcstsr>
and i dont want to use gui version of pinentry
<drmcstsr>
everything works as intended except for the clipboard part