|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#46 | |
|
Connoisseur
![]() Posts: 59
Karma: 10
Join Date: Dec 2024
Device: Kindle Scribe
|
Quote:
#!/bin/sh # KUAL action: launch AbiWord detached so KUAL/booklet steps aside and AbiWord # owns the screen + keyboard (nothing left holding input like kterm did). setsid sh /mnt/us/kindle_abiword/launch.sh >/dev/null 2>&1 & exit 0 I did include a properly formatted Scriptlet icon in /kindle_abiword/abiword.png to be used in the future. If you have time can you experiment with getting a Scriptlet to work? I saw that you BASE64 embedded your icon for WordGrinder, but I also saw somewhere else that you can include the path to the image. I thought a Scriptlet should work like this: #!/bin/sh # Name: Kindle Abiword Alpha 1.0 # Author: Kaspar # Icon: /mnt/us/kindle_abiword/abiword.png setsid sh /mnt/us/kindle_abiword/launch.sh >/dev/null 2>&1 & exit 0 Also I encountered some problem where when I made scriptlets with the same name (but modified, then deleted), I can't use that name again on my device, as it seems to be stored in a cache and somewhat blacklisted? Last edited by kaspar; 07-15-2026 at 02:41 PM. |
|
|
|
|
|
|
#47 |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 6,066
Karma: 107275353
Join Date: Apr 2011
Device: pb360
|
Maybe a row for it gets put in cc.db and deleting that row would free up that name. (Make a backup of cc.db first.)
|
|
|
|
| Advert | |
|
|
|
|
#48 | |
|
Zealot
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 119
Karma: 289266
Join Date: Feb 2025
Device: Kindle PW5
|
Quote:
It's working on my device (albeit with the bugs mentioned in my previous post - missing menubar etc). Generally I try to keep the booklet script simple and I use this site to create the icon. |
|
|
|
|
|
|
#49 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,655
Karma: 5000564
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
|
@kbarni
Thanks, the scriplet works! However I noticed that files operation on my Windows 11 machine are kinda slow with this particular file. Not sure why, maybe because of base64 image embedded. Like, renaming it (I was removing ".txt"), moving it, or deleting it freezes up the File Explorer for about 1-2 minutes. It finished fine in the end, but it is strange. Other files and scriplets are fine. |
|
|
|
|
|
#50 | |
|
Zealot
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 119
Karma: 289266
Join Date: Feb 2025
Device: Kindle PW5
|
Quote:
![]() Here's a no-icon version of the scriptlet, if it helps... |
|
|
|
|
| Advert | |
|
|
|
|
#51 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,655
Karma: 5000564
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
|
Yes, it is just weird
|
|
|
|
|
|
#52 |
|
Connoisseur
![]() Posts: 59
Karma: 10
Join Date: Dec 2024
Device: Kindle Scribe
|
Hey @kbarni,
Thank you! Your: cd /mnt/us/kindle_abiword ./launch.sh did the trick, and probably the DontUseFBInk. I wonder why you're not getting a menu now. It works on my Oasis. Can you upload your run.log? I know it will be throwing missing icon errors still, but there might be something new in it that I haven't seen. I uploaded the same script, just using the existing icon in the kindle_abiword directory. @mergen3107 I will be releasing Alpha 1.1 this weekend. Changes are: 1. I figured out the reason for the text disappearing and reappearing while typing. In the original Abiword code there is a white out and redraw happening so quickly that it is imperceptible on an LCD screen at 60Hz. I have added some measures against it, and so typing looks smooth and less annoying. It does still need to refresh, but I mapped it to refresh locally upon backspace and period so it happens more naturally. 2. I added some more missing icon files to quiet the run.log. |
|
|
|
|
|
#53 |
|
Connoisseur
![]() Posts: 59
Karma: 10
Join Date: Dec 2024
Device: Kindle Scribe
|
|
|
|
|
|
|
#54 | |
|
Connoisseur
![]() Posts: 59
Karma: 10
Join Date: Dec 2024
Device: Kindle Scribe
|
Quote:
I have a Lenovo Trackpoint II keyboard that also has the classic Thinkpad red pointer dot. When I connect it with Kindle HID Passthrough via Bluetooth and move the dot, menu items darken, and I can click. The mouse is working! But there is no cursor icon! I think my USB implementation is indiscriminate, and that things like a thumb drive, an Ethernet adapter, pretty much anything in the kernel, will work with some very minor modifications. When I get Abiword more stable I will work on making it a separate program. I want to get my hands on more Kindles that have USB C. Did you see that the Colorsoft Scribe uses ARM64? I looked at the GPL source. Things are getting interesting. Last edited by kaspar; Yesterday at 01:31 PM. |
|
|
|
|
|
|
#55 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,655
Karma: 5000564
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
|
I have also PW6 I use in testing. Let me know!
Haha first challenge will to jailbreak it first, because AFAIK these newest Kindles have dm-verity check on boot. |
|
|
|
|
|
#56 |
|
Zealot
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 119
Karma: 289266
Join Date: Feb 2025
Device: Kindle PW5
|
Hi kaspar,
I found the cause of the disappearing menu bar: my Kindle was set to French, and Abiword lacked the French strings for the menu - so the menu bar was probably there, just empty. Interestingly it had the strings for the dialogs - like Find, Replace, Quit, Save etc Probably the safest solution is to set the locale to en_US in launch.sh The bug with no keyboard input in dialog boxes is still there. BTW, some more ideas, mostly with Kindle/lipc integration and features : - When closing Abiword, restore the original screen orientation. I forgot it in landscape mode and it borked Koreader. - I think it would be interesting to add frontlight control (toggle, increase/decrease) - Probably it's a good idea to disable screensaver while Abiword is active. I observed with my text editors that the Kindle registers only the screen touches as activity; so if you type only, it will go to sleep after 20 minutes. (as Textadept and Wordgrinder are both entirely keyboard driven, it happened to me quite often). |
|
|
|
|
|
#57 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,655
Karma: 5000564
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
|
@kaspar can you please share sources?
|
|
|
|
|
|
#58 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,655
Karma: 5000564
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
|
> Koreader.
- I think it would be interesting to add frontlight control (toggle, increase/decrease) This probably can assigned to keyboard binds with kindle-button-mapper with lipc commands, I’ll try to see if I can do it |
|
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Kindle Scribe features possibly coming to Kindle apps | jhowell | Amazon Kindle | 2 | 06-04-2026 10:53 AM |
| All Kindles (except new Basic and Scribe) on sale | rcentros | Deals and Resources (No Self-Promotion or Affiliate Links) | 5 | 11-22-2022 04:45 AM |
| Looking to possibly move from Kindle PW2 to Kobo | devong67 | Which one should I buy? | 21 | 01-22-2015 06:57 PM |
| Possibly a New Format for Kindle 2? | Gideon | News | 11 | 02-18-2009 04:00 PM |
| iLiad Abiword | Adam B. | iRex Developer's Corner | 41 | 11-20-2008 04:35 AM |