- Tested on
- OneUI 4.x/5.x based Stock/Custom ROMs.
- GSI with OneUI 4.x/5.x stock firmware.
- Front Camera Does not work.
- 0.5x, 1x and 3x lenses work.
# Steam Installer Downloader and Extractor Script | |
# Define the URLs and file paths | |
$steamUrl = "https://cdn.akamai.steamstatic.com/client/installer/SteamSetup.exe" | |
$steamPath = "$env:USERPROFILE\Downloads\SteamSetup.exe" | |
$extractPath = "$env:USERPROFILE\Downloads\SteamSetup_Extracted" | |
# Function to download a file | |
function Download-File($url, $outputPath) { | |
Write-Host "Downloading from $url..." |
function Set-DarkTheme { | |
# Set Windows 10 to use dark theme for apps and system | |
$KeyPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" | |
$NameApps = "AppsUseLightTheme" | |
$NameSystem = "SystemUsesLightTheme" | |
$Value = 0 # 0 for dark mode, 1 for light mode | |
# Create the key if it doesn't exist | |
If (-Not (Test-Path $KeyPath)) { | |
New-Item -Path $KeyPath -Force | Out-Null |
reddit\.com.* | |
old.reddit.com | |
www.reddit.com | |
reddit.com | |
redditstatic.com | |
redditmedia.com | |
redd.it |
iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/haridhayal11/32828f881b94eb87a466c84e00c1a6e8/raw/24263f34523fcc1fddfbf69e2f1a4725c1f05aeb/adb_system_windows.ps1'))
#Install New apps | |
$apps = @( | |
@{name = "Telegram.TelegramDesktop" }, | |
@{name = "Waterfox.Waterfox" }, | |
@{name = "PrestonN.FreeTube" }, | |
@{name = "SyncTrayzor.SyncTrayzor" }, | |
@{name = "eloston.ungoogled-chromium" }, | |
@{name = "BraveSoftware.BraveBrowser" }, | |
@{name = "Valve.Steam" }, | |
@{name = "Element.Element" }, |
Your warranty is now void. I am not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed. Please do some research if you have any concerns about features included in this ROM before flashing it! YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.
#!/bin/bash | |
timedatectl set-ntp true | |
read -p " Timezone Selection | |
1. List All Timezones | |
2. Enter Timezone " TZCHECK | |
case $TZCHECK in | |
[1]* ) timedatectl list-timezones;; |
#!/bin/bash | |
echo "Backing up default mirrorlist" | |
cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.bak | |
echo "Finding Fast mirrors" | |
reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist | |
sudo pacman -Sy curl | |
echo "Fetching Secondary Script" |