Sidebar

Termux

termux
Termux TheGuyTM3 1 year ago 100%
VNC crash issues

Each time i try to launch proot distro ubuntu on a vnc server, my smartphone crash, and my tmx session end. Is this because i did something wrong, or my phone is too old? (Samsung G A12 4GB ram)

3
0
termux
Termux DoubleOwl7777 1 year ago 100%
termux x11 is awesome

just wanted to say that. its what i have always wanted. no lag like with the shitty vnc methode, no f...ing around with connection and passwords.

11
1
termux
Termux petertree 1 year ago 100%
Short termux script I wrote to open other instance link in my instance (Lemmy.world)

instance.sh: ``` #!/bin/bash MY_INSTANCE=lemmy.world #change to your URL STR=$( echo "$1" | sed 's#/c/# #' | sed 's/http[s]:\/\///' ) OTHER_INSTANCE=$( echo $STR | cut -d ' ' -f 1 ) COMMUNITY=$( echo $STR | cut -d ' ' -f 2 ) termux-open-url $( echo https://$MY_INSTANCE/c/$COMMUNITY\@$OTHER_INSTANCE ) ``` Usage: `instance.sh URL` Example usage: `instance.sh https://lemmy.ml/c/technology` Result: https://lemmy.world/c/technology@lemmy.ml opens in browser

5
0