diff --git a/README.md b/README.md
index 9112463..aa3ddbd 100644
--- a/README.md
+++ b/README.md
@@ -18,21 +18,21 @@ Add multiple background images for the window, editors, sidebars, or the panel.
-## 📃 Installation
+## Installation
- Install from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=katsute.code-background).
- Install directly from VSCode using the id [`katsute.code-background`](https://marketplace.visualstudio.com/items?itemName=katsute.code-background).
-#### 🖼️ Usage
+#### Usage
1. Type `Background: Configuration` in the command pallette or press the **Background** tab in the statusbar.
2. Select where you want to add a background (Window, Editor, Sidebar, Panel).
3. Add backgrounds and change how it should be displayed.
4. Use `Background: Install` or press the install button.
-## ✨ Features
+## Features
-#### 🖼️ Multiple Backgrounds
+#### Multiple Backgrounds
Add background images for the whole window, editors, sidebars, or the panel. Transition between multiple background images.
@@ -47,7 +47,7 @@ Add background images for the whole window, editors, sidebars, or the panel. Tra
-#### ⚙️ Configuration Menu
+#### Configuration Menu
Type `Background: Configuration` in the command pallette or press the **Background** tab in the statusbar to access the configuration menu.
@@ -55,7 +55,7 @@ Type `Background: Configuration` in the command pallette or press the **Backgrou
-#### ✱ Glob, URL, and Environment Variable Support
+#### Glob, URL, and Environment Variable Support
Add background images by file, folder, [glob](https://github.com/isaacs/node-glob#glob-primer), or URL.
@@ -67,7 +67,9 @@ Add background images by file, folder, [glob](https://github.com/isaacs/node-glo
-## 💻 Commands
+
+
+## Commands
| Command | Description |
|---|---|
@@ -77,7 +79,9 @@ Add background images by file, folder, [glob](https://github.com/isaacs/node-glo
|`Background: Configuration`|Opens the configuration menu.|
|`Background: Changelog`|Opens changelog.|
-## ⚙️ Configuration
+
+
+## Configuration
Use the `Background: Configuration` command to access the configuration menu.
@@ -119,7 +123,9 @@ The order settings are saved in is:
|`background.smoothImageRendering`|`boolean`|If enabled, use smooth image rendering rather than pixelated rendering when resizing images.|
|`background.CSS`|`string`|Apply raw CSS to VSCode.|
-## 💻 Environment Variables
+
+
+## Environment Variables
| Variable | Description |
|---|---|
@@ -127,7 +133,9 @@ The order settings are saved in is:
|`${user:home}`|Current user's home directory|
|`${...}`|System environment variable|
-## 🔌 API
+
+
+## API
Add this extension to your `package.json`.
@@ -147,35 +155,37 @@ Access the api by using:
const background = vscode.extensions.getExtension("katsute.code-background").exports;
```
-* `install(): void`
+ * `install(): void`
+
+ Runs the `Background: Install` command.
+ * `uninstall(): void`
- Runs the `Background: Install` command.
-* `uninstall(): void`
+ Runs the `Background: Uninstall` command.
+ * `reload(): void`
- Runs the `Background: Uninstall` command.
-* `reload(): void`
+ Runs the `Background: Reload` command.
+ * `get(ui): string[]?`
+ * `ui` : Background to get from; either `window`, `editor`, `sidebar`, `panel`.
- Runs the `Background: Reload` command.
-* `get(ui): string[]?`
- * `ui` : Background to get from; either `window`, `editor`, `sidebar`, `panel`.
+ Returns an array of globs for the specified background.
+ * `add(ui, glob): Promise`
+ * `ui` : Background to add to; either `window`, `editor`, `sidebar`, `panel`.
+ * `glob`: Glob to add.
- Returns an array of globs for the specified background.
-* `add(ui, glob): Promise`
- * `ui` : Background to add to; either `window`, `editor`, `sidebar`, `panel`.
- * `glob`: Glob to add.
+ Returns true if successful.
+ * `replace(ui, old, glob): Promise`
+ * `ui` : Background to replace from; either `window`, `editor`, `sidebar`, `panel`.
+ * `old`: Glob to replace.
+ * `glob`: Updated glob.
- Returns true if successful.
-* `replace(ui, old, glob): Promise`
- * `ui` : Background to replace from; either `window`, `editor`, `sidebar`, `panel`.
- * `old`: Glob to replace.
- * `glob`: Updated glob.
+ Returns true if successful.
+ * `remove(ui, glob): Promise`
+ * `ui` : Background to remove from; either `window`, `editor`, `sidebar`, `panel`.
+ * `glob`: Glob to remove.
- Returns true if successful.
-* `remove(ui, glob): Promise`
- * `ui` : Background to remove from; either `window`, `editor`, `sidebar`, `panel`.
- * `glob`: Glob to remove.
+ Returns true if successful.
- Returns true if successful.
+
##