diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..157174a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,49 @@
+# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
+
+# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode
+# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode
+
+### VisualStudioCode ###
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+*.code-workspace
+
+### VisualStudioCode Patch ###
+# Ignore all local history of files
+.history
+
+### Windows ###
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk
+
+# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode
+
+# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
+
+# MAGISK Zips
+*.zip
\ No newline at end of file
diff --git a/README.md b/README.md
index 387b00b..f554139 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,12 @@
-# Modpack for OxygenOS Pie
+# Modpack for OxygenOS / Android Q
 
-This module disables a buch of Google & OnePlus system apps and adds some cool features. Some Google Play services will also get disabled on boot.
+## Features
+- Replaced OnePlus' Phone, Messages(SMS), and Contacts with Googles apps
+- Enabled Google Photos Photo backup
+- Replaced Roboto and OnePlus Slate fonts with Google Product Sans
+- The ringtones, notifications and alarm sounds will be replaced with some basic ones
+- iOS 13 Emojis
+- Some Google Play Services will be disabled on boot (see below)
 
 ## Currently disabled apps: (* Install via PlayStore if needed)
 
@@ -10,6 +16,7 @@ This module disables a buch of Google & OnePlus system apps and adds some cool f
 -Basic Daydreams
 -Bookmark Provider
 -OnePlus Cards
+-OnePlus CellBroadcastReceiver
 -Google Chrome (*)
 -Desk Clock
 -Google Drive (*)
@@ -34,15 +41,6 @@ This module disables a buch of Google & OnePlus system apps and adds some cool f
 -Android Talkback (*)
 -Play Videos (*)
 
-OnePlus CellBroadcastReceiver
-
-## Added features
-
-- Enabled Google Photos unlimited-free Photo backup (until 2021)
-- Replaced Roboto and OnePlus Slate fonts with Google Product Sans
-- The ringtones, notifications and alarm sounds will be replaced with some basic one that I picked
-- iOS 13 Emojis
-
 ## Disabled Google Play Services functions
 
 -com.google.android.gms.analytics.service.AnalyticsService
@@ -53,5 +51,5 @@ OnePlus CellBroadcastReceiver
 
 ## Changelog
 
-**v4**
+**v1**
  *Added iOS Emojis
\ No newline at end of file
diff --git a/system/etc/permissions/GPhone-permissions.xml b/system/etc/permissions/GPhone-permissions.xml
index 6485de2..84e0e12 100644
--- a/system/etc/permissions/GPhone-permissions.xml
+++ b/system/etc/permissions/GPhone-permissions.xml
@@ -14,13 +14,4 @@
 		<permission name="com.android.voicemail.permission.READ_VOICEMAIL"/>
 		<permission name="com.android.voicemail.permission.WRITE_VOICEMAIL"/>
 	</privapp-permissions>
-	
-    <privapp-permissions package="com.google.android.apps.wellbeing">
-        <permission name="android.permission.CONTROL_DISPLAY_SATURATION"/>
-        <permission name="android.permission.OBSERVE_APP_USAGE"/>
-        <permission name="android.permission.PACKAGE_USAGE_STATS"/>
-        <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
-        <permission name="android.permission.SUSPEND_APPS"/>
-        <permission name="android.permission.WRITE_SECURE_SETTINGS"/>
-    </privapp-permissions>
 </permissions>
\ No newline at end of file
diff --git a/system/etc/permissions/wellbeing_permissions.xml b/system/etc/permissions/wellbeing_permissions.xml
new file mode 100644
index 0000000..4e3c832
--- /dev/null
+++ b/system/etc/permissions/wellbeing_permissions.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<permissions>
+    <privapp-permissions package="com.google.android.apps.wellbeing">
+        <permission name="android.permission.CONTROL_DISPLAY_SATURATION"/>
+        <permission name="android.permission.OBSERVE_APP_USAGE"/>
+        <permission name="android.permission.PACKAGE_USAGE_STATS"/>
+        <permission name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
+        <permission name="android.permission.SUSPEND_APPS"/>
+        <permission name="android.permission.WRITE_SECURE_SETTINGS"/>
+    </privapp-permissions>
+</permissions>
\ No newline at end of file