Skip to content

Instantly share code, notes, and snippets.

View busybox11's full-sized avatar
🎧

rain capsule busybox11

🎧
View GitHub Profile
@busybox11
busybox11 / install.ps1
Last active December 2, 2023 00:24
Install Script
$user_downloads_folder = (New-Object -ComObject Shell.Application).NameSpace('shell:Downloads').Self.Path
$user_backup_folder = "R:\Install_script"
Write-Output "Opening Chrome Installer"
Start-Process -FilePath "$user_backup_folder\ChromeSetup.exe"
Write-Output "Copying VSCode"
Copy-Item -Path "$user_backup_folder\VSCode" -Destination "$HOME\VSCode" -Recurse
Write-Output "Downloading and installing Discord"
@busybox11
busybox11 / script.sh
Last active April 3, 2023 09:02
The best linux command
#!/bin/bash
echo "Hi there"
echo
sleep 3 &
echo "We're taking care of your computer"
echo
sleep 5 &
echo "Please let us some time."
echo "Processing some files..."