|
1 | 1 | # 🛠️ TerminalBuild |
2 | 2 |
|
3 | | -TerminalBuild — это коллекция скриптов для быстрой настройки окружения терминала и редактора Visual Studio Code. Скрипты автоматически устанавливают/удаляют полезные утилиты, настраивают удобные бинды и делают работу в терминале более комфортной. |
| 3 | +TerminalBuild is a collection of scripts for quick terminal environment and Visual Studio Code setup. The scripts automatically install/remove useful utilities, configure convenient aliases, and make your terminal experience more comfortable. |
4 | 4 |
|
5 | 5 | --- |
6 | 6 |
|
7 | | -## Предварительные шаги |
| 7 | +## Prerequisites |
8 | 8 |
|
9 | | -Перед установкой убедитесь, что выполнены следующие действия: |
| 9 | +Before installation, make sure you have the following: |
10 | 10 |
|
11 | | -1. Выполнить |
12 | | -``` |
| 11 | +1. Update packages and install git: |
| 12 | +```bash |
13 | 13 | sudo apt update |
14 | 14 | sudo apt install git -y |
15 | 15 | ``` |
16 | 16 |
|
17 | | -2. (Опционально) Установите Visual Studio Code |
18 | | -``` |
| 17 | +2. (Optional) Install Visual Studio Code: |
| 18 | +```bash |
19 | 19 | sudo apt install code |
20 | 20 | ``` |
| 21 | + |
| 22 | +> **Note:** If you're running as root, VS Code commands require `--no-sandbox` flag. The scripts handle this automatically. |
| 23 | +
|
21 | 24 | --- |
22 | 25 |
|
23 | | -## ⚙️ Установка и запуск |
| 26 | +## ⚙️ Installation |
24 | 27 |
|
25 | | -1. Склонируйте репозиторий |
26 | | -``` |
| 28 | +1. Clone the repository: |
| 29 | +```bash |
27 | 30 | git clone https://github.com/melisha-git/TerminalBuild.git |
28 | 31 | ``` |
29 | | -2. Установите |
30 | | -``` |
| 32 | + |
| 33 | +2. Run the setup: |
| 34 | +```bash |
31 | 35 | cd TerminalBuild |
32 | | -chmod +x install.sh |
| 36 | +chmod +x install.sh vscode-tools-install.sh |
33 | 37 | ./install.sh |
34 | | -./vscode-tools-install.sh # (опционально) |
35 | | -exec zsh #or source .zshrc |
| 38 | +./vscode-tools-install.sh # (optional) |
| 39 | +exec zsh # or: source ~/.zshrc |
36 | 40 | ``` |
| 41 | + |
| 42 | +Each script will ask for confirmation before installing any component — nothing is forced. |
| 43 | + |
37 | 44 | --- |
38 | 45 |
|
39 | | -## Удаление |
| 46 | +## 🧹 Uninstallation |
40 | 47 |
|
41 | | -Для удаления установленных компонентов: |
42 | | -``` |
| 48 | +To remove installed components: |
| 49 | + |
| 50 | +```bash |
43 | 51 | cd TerminalBuild |
44 | | -chmod +x uninstall.sh |
| 52 | +chmod +x uninstall.sh vscode-tools-uninstall.sh |
45 | 53 | ./uninstall.sh |
46 | | -./vscode-tools-uninstall.sh # (опционально) |
| 54 | +./vscode-tools-uninstall.sh # (optional) |
47 | 55 | ``` |
| 56 | + |
| 57 | +Each component can be skipped individually during removal. |
| 58 | + |
48 | 59 | --- |
49 | 60 |
|
50 | | -## Структура проекта |
| 61 | +## 📦 What's Included |
| 62 | + |
| 63 | +| Component | Description | |
| 64 | +|---|---| |
| 65 | +| **Oh My Zsh** | Zsh configuration framework | |
| 66 | +| **Powerlevel10k** | Fast and customizable Zsh theme | |
| 67 | +| **fzf** | Fuzzy file finder with preview | |
| 68 | +| **eza** | Modern replacement for `ls` with icons and git support | |
| 69 | +| **VS Code Extensions** | 30+ extensions for Python, C++, Docker, Remote SSH, and more | |
| 70 | + |
| 71 | +--- |
| 72 | + |
| 73 | +## 📁 Project Structure |
| 74 | + |
51 | 75 | ``` |
52 | 76 | TerminalBuild/ |
53 | | -├── install.sh # Установка основных утилит |
54 | | -├── vscode-tools-install.sh # Установка расширений и настроек для VSCode |
55 | | -├── vscode-tools-uninstall.sh# Удаление VSCode-настроек |
56 | | -└── README.md # Документация проекта |
| 77 | +├── install.sh # Terminal utilities installer |
| 78 | +├── uninstall.sh # Terminal utilities uninstaller |
| 79 | +├── vscode-tools-install.sh # VS Code + extensions installer |
| 80 | +├── vscode-tools-uninstall.sh # VS Code + extensions uninstaller |
| 81 | +└── README.md # Documentation |
57 | 82 | ``` |
| 83 | + |
58 | 84 | --- |
59 | 85 |
|
60 | | -## Планируемые улучшения (TODO) |
| 86 | +## 📋 Summary Output |
61 | 87 |
|
62 | | -* [ ] GUI-меню выбора устанавливаемых пакетов |
63 | | -* [ ] Обновление через git pull и перезапуск скриптов |
| 88 | +Both install and uninstall scripts display a summary table at the end: |
64 | 89 |
|
65 | | ---- |
| 90 | +``` |
| 91 | +=========================================== |
| 92 | + 📋 Installation Summary |
| 93 | +=========================================== |
| 94 | + COMPONENT STATUS |
| 95 | + ──────────────────────────────────────── |
| 96 | + git 🔵 Already existed |
| 97 | + curl 🔵 Already existed |
| 98 | + zsh 🟢 Installed |
| 99 | + oh-my-zsh 🟢 Installed |
| 100 | + powerlevel10k 🟢 Installed |
| 101 | + fzf 🟢 Installed |
| 102 | + build-essential 🔵 Already existed |
| 103 | + eza 🟢 Installed |
| 104 | +=========================================== |
| 105 | +``` |
66 | 106 |
|
67 | | -## Автор |
| 107 | +--- |
68 | 108 |
|
69 | | -[@melisha-git](https://github.com/melisha-git) |
| 109 | +## 🗺️ Roadmap |
70 | 110 |
|
71 | | -Pull Requests и Issues приветствуются! |
| 111 | +- [ ] Interactive GUI menu for selecting packages |
| 112 | +- [ ] Self-update via `git pull` and script restart |
72 | 113 |
|
73 | 114 | --- |
| 115 | + |
| 116 | +## Author |
| 117 | + |
| 118 | +[**@melisha-git**](https://github.com/melisha-git) |
| 119 | + |
| 120 | +Pull Requests and Issues are welcome! |
0 commit comments