TermuxSetup/README.md

27 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

2024-05-03 03:24:24 +00:00
# TermuxSetup
2024-05-03 03:50:56 +00:00
2024-05-03 05:03:15 +00:00
Yeah, yeah, another setup script. This one does the usual boring stuff, but hey, this one is recently updated (probably) and it actually works (also probably).
2024-05-03 03:50:56 +00:00
2024-05-03 05:03:15 +00:00
## What This Script (Begrudgingly) Does
2024-05-03 03:50:56 +00:00
2024-05-03 05:03:15 +00:00
* **Updates Your Repos (Because It Has To):** Gets you the freshest packages because apparently that's important to some people.
* **Installs Essential Repos:** Adds tur-repo and x11-repo, because who doesn't need more package sources?
* **Development Tools (Blah Blah Blah):** Installs Code-OSS (for the GUI lovers), Nodejs (with npm, of course), Python 3 (with pip), Python 2 (for the dinosaurs), and more.
* **XFCE4 Desktop (If You're Into That Sort of Thing):** Sets up XFCE4 so you can pretend Termux is a real computer.
* **VNC Server (With a Catch):** Installs a VNC server so you can remotely access your tiny Android desktop. **Don't forget:** Run `vncpasswd` after restarting to actually set a password.
* **Zsh Upgrade (Because Bash Is Lame):** Switches your default shell to the mighty Zsh.
* **Aliases (For the Extremely Lazy):** Includes these shortcuts so you don't have to type a few extra characters:
* `py` - Run Python 3 scripts
* `py2` - Run Python 2 scripts
* `startvnc` - Start the VNC server and XFCE4 desktop
* `killvnc` - Stop the VNC server (Srsly: this is important because if you do not kill the server before stopping Termux, the next time you use startvnc, it'll bitch about display locks.)
2024-05-03 03:50:56 +00:00
2024-05-03 05:03:15 +00:00
## Usage (If You Must)
2024-05-03 03:50:56 +00:00
2024-05-03 05:03:15 +00:00
**Here is an overly-complicated one-liner to install so I can look as though I'm smart and I know what I'm doing:**
2024-05-03 03:50:56 +00:00
```
2024-05-03 05:03:15 +00:00
curl https://raw.githubusercontent.com/theregoesmyeye/TermuxSetup/main/setup.sh | tee ~/setup.sh && chmod +x ~/setup.sh && bash ~/setup.sh && rm ~/setup.sh
2024-05-03 06:45:08 +00:00
```
# Changes:
1. Now sets up storage and installs git, bruh.