Things I had to go do to get Plover to work with Polygot keyboard on Ubuntu 22.04 #1609
fearofcode
started this conversation in
General
Replies: 1 comment
-
Actually the dialout part is in https://github.com/openstenoproject/plover/wiki/Installation-Guide#allowing-access-to-serial-ports . |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sharing this for myself and anyone else in this situation:
sudo apt install libfuse2
qt5-default
that every search result says to use, it won't work, the package doesn't exist anymore. Instead runsudo apt install -y qtcreator qtbase5-dev qt5-qmake cmake
.PermissionDenied
error when trying to add the Polyglot keyboard. The fix I did was to add myself to thedialout
group so that it could talk to serial devices???sudo usermod -a -G dialout `whoami
, log out, log in. Yes, I tried running the app withsudo
. The app threw a stack trace and would not boot.I did not expect this since AppImages are described as being self-contained.
Beta Was this translation helpful? Give feedback.
All reactions