Skip to content

Commit ac090da

Browse files
beautifying Things (1)
1 parent 3bdc596 commit ac090da

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,11 @@ vnc password -> `ubuntu`
6767
you can change it by command `vncpasswd`
6868

6969
## Appeared on
70-
- Youtube (1x1 Tech channel): https://www.youtube.com/watch?v=aJhV7K80OvQ
71-
[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/aJhV7K80OvQ/0.jpg)](https://www.youtube.com/watch?v=aJhV7K80OvQ)
70+
| Channel | Link to source |
71+
|---|---|
72+
| Youtube (1x1 Tech channel) | [![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/aJhV7K80OvQ/0.jpg)](https://www.youtube.com/watch?v=aJhV7K80OvQ)
73+
74+
7275

7376
A small help from me if you want to build your own rootfs [wiki_page](https://github.com/RandomCoderOrg/ubuntu-on-android/wiki/commands-took-to-make-a-custom-rootfs)
7477
# Devolopers & credits

main.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
##
2+
## MAIN SCRIPT FOR INSTALLING FURTHER CMDS
3+
##
4+
5+
##Adding a vncserver command
6+
echo "vncserver -kill :* && rm -rf /tmp/.X*-lock && tigervncserver -geometry 1280x720 -xstartup /usr/bin/starrxfce4 -listen tcp :1" > /data/data/com.termux/files/usr/varlib/proot-distro/installed-rootfs/hippo/usr/bin/vncserver-start;
7+
# Making it executable
8+
chmod +x /data/data/com.termux/files/usr/varlib/proot-distro/installed-rootfs/hippo/usr/bin/vncserver-start;
9+
10+
# Adding script for sound...
11+
echo "pulseaudio --start --load="module-native-protocol-tcp auth-ip-acl=127.0.0.1 auth-anonymous=1" --exit-idle-time=-1" > $PREFIX/bin/pulseserver-start
12+
# Making it executable
13+
chmod +x $PREFIX/bin/pulseserver-start
14+
15+
# Adding sound to .bashrc
16+
echo "export PULSE_SERVER=127.0.0.1 >> /data/data/com.termux/files/usr/varlib/proot-distro/installed-rootfs/root/.bashrc
17+
18+
# Just useful
19+
echo "export DISPLAY=:1" >> data/data/com.termux/files/usr/varlib/proot-distro/installed-rootfs/hippo/root/.bashrc

0 commit comments

Comments
 (0)