You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2026. It is now read-only.
I'm remotely controlling my castnow session via KDEConnect.
The examples that utilize arrow-keys won't work there out of the box, because of some weird eval/escape issue.
But if you use '^[[D' instead of $'\e[D' than it works both from CLI and via KDEConnect.
I used showkey -a to figure this out.
Examples:
Seek backward.
Instead of screen -S cast_session -X stuff $'\e[D'
use screen -S cast_session -X stuff '^[[D'
Seek forward.
Instead of screen -S cast_session -X stuff $'\e[C'
use screen -S cast_session -X stuff '^[[C'
I'm remotely controlling my castnow session via KDEConnect.
The examples that utilize arrow-keys won't work there out of the box, because of some weird eval/escape issue.
But if you use
'^[[D'instead of$'\e[D'than it works both from CLI and via KDEConnect.I used
showkey -ato figure this out.Examples:
Seek backward.
Instead of
screen -S cast_session -X stuff $'\e[D'use
screen -S cast_session -X stuff '^[[D'Seek forward.
Instead of
screen -S cast_session -X stuff $'\e[C'use
screen -S cast_session -X stuff '^[[C'