<emoji> [issue hash] [scope:] <message in present tense>
🚨 BREAKING CHANGE:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Installs Google Fonts as system fonts using Windows Powershell | |
# Created On 20 September 2021 | |
# | |
# Execute: '$Font = "Open Sans"', (iwr https://git.io/JzcAW).Content | powershell -c - | |
# Execute locally: '$Font = "Open Sans"', (Get-Content ./install.ps1) | powershell -c - | |
# ensure that we're running as Administrator | |
if ('S-1-5-32-544' -notin [System.Security.Principal.WindowsIdentity]::GetCurrent().Groups) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# DEFINE THE BLOATWARE APPLICATIONS WHICH | |
# ARE SAFE TO BE REMOVED | |
declare -a bloatware=( | |
# Google Bloatware | |
"com.google.android.apps.subscriptions.red" # Google One | |
"com.google.android.apps.googleassistant" # Google Assistant | |
"com.google.android.apps.docs" # Google Docs | |
"com.google.android.apps.docs.editors.docs" # Google Docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin bash | |
# DEFINE THE BLOATWARE APPLICATIONS WHICH | |
# ARE SAFE TO BE REMOVED | |
declare -a bloatware=( | |
# Google Bloatware | |
"com.google.android.apps.docs" # Google Docs | |
"com.google.android.apps.maps" # Google Maps | |
"com.google.android.apps.photos" # Google Photos | |
"com.google.android.apps.tachyon" # Google Duo |