Skip to content

Instantly share code, notes, and snippets.

View googIyEYES's full-sized avatar

Abdullah googIyEYES

  • 09:16 (UTC +05:00)
View GitHub Profile
@googIyEYES
googIyEYES / customization_script.sh
Last active February 3, 2026 18:14
To Get The Juxtopposed's Mystical Blue Theme with some extra customizations on Arch Based Distros
#!/bin/bash
if [ "$EUID" -eq 0 ]; then
echo "Do not run this script as root. Run it as your normal user."
exit
fi
# Use absolute path for HOME to ensure consistency
HOME_DIR="/home/$USER"
LOCAL_SHARE="$HOME_DIR/.local/share"
@googIyEYES
googIyEYES / first_boot_script.sh
Last active February 3, 2026 18:15
This Does The Basics After The FIRST BOOT (Drivers are only compatible with 600/700 series Nvdiia GPUs) Remove the (-580xx) for modern cards.
#!/bin/bash
# Stop script on error
set -e
# Ensure the script is running as root
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit
fi
@googIyEYES
googIyEYES / chroot_script.sh
Last active February 3, 2026 18:16
A Script That You Can Execute In CHROOT After A Fresh Install of Arch Linux to instantly install GRUB with Elegant-Grub2-Theme, Install and Run Os-prober. Install dosfstools, partitionmanager, mtools, neovim, git, curl, perl and also generate a list of mirrors using Reflector
#!/bin/bash
# ==========================================
# CONFIGURATION
# ==========================================
# !!! IMPORTANT: CHANGE THIS TO YOUR DRIVE !!!
# Examples: /dev/sda , /dev/nvme0n1
DISK="/dev/sda"
echo "============================================="