Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This repository contains system scripts for XOS. The primary entrypoint is `x.sh
- Run `bash x.sh` after system startup or reboot.

```bash
curl -sLO https://raw.githubusercontent.com/xscriptordev/x/main/x.sh || exit 0; chmod +x x.sh || true; ./x.sh || true
curl -sLO https://raw.githubusercontent.com/xscriptor/x/main/x.sh || exit 0; chmod +x x.sh || true; ./x.sh || true
```

- After execution, reload your shell: `source ~/.bashrc` or `source ~/.zshrc`.
Expand Down
6 changes: 3 additions & 3 deletions scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
### To add Nvidia support run the following command:

```bash
curl -sL https://raw.githubusercontent.com/xscriptordev/x/main/scripts/nvidia/script.sh | bash
curl -sL https://raw.githubusercontent.com/xscriptor/x/main/scripts/nvidia/script.sh | bash
```
### to install qemu run the following command:

```bash
curl -sL https://raw.githubusercontent.com/xscriptordev/x/main/scripts/qemu/script.sh | bash
curl -sL https://raw.githubusercontent.com/xscriptor/x/main/scripts/qemu/script.sh | bash
```
## web

### To install nvm+ node + typescript + npm + pnpm + yarn run the following command:

```bash
curl -sL https://raw.githubusercontent.com/xscriptordev/x/main/scripts/nvm/script.sh | bash
curl -sL https://raw.githubusercontent.com/xscriptor/x/main/scripts/nvm/script.sh | bash
```
4 changes: 2 additions & 2 deletions wsl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This script must be run as `root` on a fresh WSL instance.

```bash
# Download and run as root
wget https://raw.githubusercontent.com/xscriptordev/x/main/wsl/install.sh
wget https://raw.githubusercontent.com/xscriptor/x/main/wsl/install.sh
chmod +x install.sh
sudo ./install.sh
```
Expand All @@ -39,7 +39,7 @@ After restarting, run the setup script to finish configuring your environment.
See [setup/README.md](../setup/README.md) for details.

```bash
wget https://raw.githubusercontent.com/xscriptordev/x/main/wsl/setup/install.sh
wget https://raw.githubusercontent.com/xscriptor/x/main/wsl/setup/install.sh
chmod +x install.sh
./install.sh
```
2 changes: 1 addition & 1 deletion wsl/setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Run the setup script to configure your environment:

```bash
# Download and run directly
wget https://raw.githubusercontent.com/xscriptordev/x/main/wsl/setup/install.sh
wget https://raw.githubusercontent.com/xscriptor/x/main/wsl/setup/install.sh
chmod +x install.sh
./install.sh
```
Expand Down
8 changes: 4 additions & 4 deletions x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ if command -v code &>/dev/null; then
fi


wget -qO- https://raw.githubusercontent.com/xscriptordev/terminal/main/ghostty/install.sh | bash
wget -qO- https://raw.githubusercontent.com/xscriptordev/terminal/main/ptyxis/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/xscriptordev/xfetch/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/xscriptordev/xtop/main/install.sh | bash
wget -qO- https://raw.githubusercontent.com/xscriptor/terminal/main/ghostty/install.sh | bash
wget -qO- https://raw.githubusercontent.com/xscriptor/terminal/main/ptyxis/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/xscriptor/xfetch/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/xscriptor/xtop/main/install.sh | bash

echo " Done. Reload your shell:"
echo " source ~/.bashrc or source ~/.zshrc"