01-15-2021, 03:08 PM
This worked fine for me. I followed the directions above to create a new .Xauthority file, then created a function in ~/.bashrc like this:
```
function send() {
GDK_BACKEND=x11 $1
}
```
And restarted bash with `. ~/.bashrc' . Now, I can log into my phone with ssh -X mobian@mobian and if I run, for example, `gedit`, it'll open on my phone. But if I run `send gedit` it'll open on my desktop. Cool!
```
function send() {
GDK_BACKEND=x11 $1
}
```
And restarted bash with `. ~/.bashrc' . Now, I can log into my phone with ssh -X mobian@mobian and if I run, for example, `gedit`, it'll open on my phone. But if I run `send gedit` it'll open on my desktop. Cool!