You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains a collection of **automation and optimization scripts**, aiming to improve the **development environment on Linux** and **gaming performance on Windows**.
4
+
5
+
---
6
+
7
+
## 🐧 Linux Automation Scripts
8
+
9
+
The Python script **`automation_script.py`** is designed to streamline the setup of a new development environment on Linux.
10
+
It automates the installation of essential tools, ensuring everything is ready to get you started quickly.
11
+
12
+
### Linux Script Features
13
+
-**System Updates**: Runs `apt update` and `apt upgrade` to keep packages up to date.
1. Open PowerShell as Administrator. To do this, right-click the Start Menu icon and select `Windows PowerShell (Admin)` or `Terminal (Admin)`.
54
+
55
+
2. Navigate to the directory where the script is saved:
56
+
```bash
57
+
cd C:\path\to\repository
58
+
```
59
+
60
+
3. Execute the script:
61
+
```bash
62
+
.\windows_gaming_tweaks.ps1
63
+
```
64
+
65
+
Note: If the script doesn't run, you might need to adjust the PowerShell execution policy. Use the command `Set-ExecutionPolicy RemoteSigned` (run as Administrator) to allow local scripts to execute.
if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
5
+
Write-Warning"This script needs to be run as an Administrator. Restarting with elevated privileges..."
0 commit comments