Package Details: remarkable-client 1.0.0-1

Git Clone URL: https://aur.archlinux.org/remarkable-client.git (read-only, click to copy)
Package Base: remarkable-client
Description: This is a Linux version of the reMarkable Desktop Client. As far as I know, the development has been discontinued, but it still works. Adding files is as simple as dragging them onto the window.
Upstream URL: https://remarkablewiki.com/tips/client?s[]=linux
Licenses: unknown
Submitter: lerhard
Maintainer: None
Last Packager: lerhard
Votes: 1
Popularity: 0.000000
First Submitted: 2020-03-04 22:42 (UTC)
Last Updated: 2021-02-19 11:23 (UTC)

Latest Comments

« First ‹ Previous 1 2

barskern commented on 2020-11-21 11:52 (UTC)

When pressing the 'Import' button in the GUI the file dialog does not show up and I get the following error message:

ERROR: No native FileDialog implementation available.
Qt Labs Platform requires Qt Widgets on this setup.
Add 'QT += widgets' to .pro and create QApplication in main().

Anyone have a similar issue or perhaps suggestions on how to solve it?

japhir commented on 2020-03-27 09:25 (UTC)

I added a desktop entry to my local copy with the following diff, which you can happily use if you want :).

diff --git a/PKGBUILD b/PKGBUILD
index d472230..e215e51 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,10 +9,12 @@ url="https://remarkable.engineering"
 pkgdesc="This is a Linux version of the reMarkable Desktop Client. As far as I know, the development has been discontinued, but it still works. Adding files is as simple as dragging them onto the window."

 depends=('qt5-svg' 'qt5-websockets' 'karchive' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-graphicaleffects')
-source=("https://remarkable.engineering/remarkable-linux-client-0.0.5-16-1408-g7eca2b66.tgz")
-sha256sums=("1a1519adc6d62359f6f73bc2a4a6e76fb710fed78ca1bc09e46191e825d3058c")
+source=("https://remarkable.engineering/remarkable-linux-client-0.0.5-16-1408-g7eca2b66.tgz" "reMarkable.desktop")
+sha256sums=('1a1519adc6d62359f6f73bc2a4a6e76fb710fed78ca1bc09e46191e825d3058c'
+            'e3011a2406eca64ef660d0007e9112203ae5a5852ff0ea7a84b91cbc78c7201a')

 package() {
     install -D -m755 "${srcdir}/remarkable-linux-client-0.0.5-16-1408-g7eca2b66/reMarkable" "${pkgdir}/usr/bin/reMarkable"
     install -D -m755 "${srcdir}/remarkable-linux-client-0.0.5-16-1408-g7eca2b66/libpdfium.so.1" "${pkgdir}/usr/lib/libpdfium.so.1"
+    install -D -m0655 "${srcdir}/reMarkable.desktop" "${pkgdir}/usr/share/applications/reMarkable.desktop"
 }

with this as the desktop entry:

[Desktop Entry]
Version=1.0
Type=Application
Name=reMarkable Desktop Client
GenericName=Desktop Client
Exec=/usr/bin/reMarkable
Icon=accessories-text-editor
Terminal=false
Categories=Graphics;Office;

eistaa commented on 2020-03-19 19:03 (UTC)

Thank you for the package. To get it working I had to install qt5-svg in addition to the already listed dependencies.

lerhard commented on 2020-03-10 14:04 (UTC)

Thank you for the information, I added the dependencies

ochi commented on 2020-03-10 13:29 (UTC)

Thank you for the package. I also needed to install karchive, qt5-quickcontrols, qt5-quickcontrols2 and qt5-graphicaleffects as dependencies on my machine.