View Single Post
Old 02-02-2024, 08:49 PM   #54
elinkser
Groupie
elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.elinkser has survived committing the World's Second Greatest Blunder.
 
Posts: 185
Karma: 146236
Join Date: Oct 2022
Device: Kobo Clara HD
***

Ok, let's try this:

You can try to get launcher to "show" via second SSH window where you launch command:

# echo 'show' > /run/remux.api

(This info was from src/remux/README.md)
Code:
92 ### API (0.1.6)
93
94 remux opens `/run/remux.api` as a FIFO and listens for incoming commands. The supported commands are `show`, `hide`, and `back`.

Let's add a second way to get the launcher to show in remux-0202:

# echo 'show2' > /run/remux.api

Anything displayed?
You may have to do a '# ps' then '# kill -KILL <remux.sh process id> to kill remux.

$ nano -l src/remux/launcher.cpy
Code:
 430     if line == "show":
 431       self.show_launcher()
 432     else if line == "show2":
 433       app_dialog->show()


***

(Unrelated) kludge to get wordlet app to compile:

$ nano -l src/wordlet/app/keyboard.cpy
Code:
...
119             kev := KeyboardEvent {self.text}
...
130           kev := KeyboardEvent {self.text}
...
159             kev := KeyboardEvent {self.text}
...

Otherwise, same error would occur 3 times e.g.:
/keyboard.h:121:18: error: designated initializers cannot be used with a non-aggregate type 'ui::KeyboardEvent'
121 | auto kev = KeyboardEvent {text:this->text};


***

Last edited by elinkser; 02-23-2024 at 10:37 AM.
elinkser is offline