diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index fd85926..310056f 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -4,19 +4,15 @@ "type": "split", "children": [ { - "id": "7dcac1028eed61b5", + "id": "33fd785f152f470a", "type": "tabs", "children": [ { - "id": "509afef58ce99456", + "id": "ccb4ddac2b13c057", "type": "leaf", "state": { - "type": "markdown", - "state": { - "file": "index.md", - "mode": "preview", - "source": true - } + "type": "empty", + "state": {} } } ] @@ -85,7 +81,6 @@ "state": { "type": "localgraph", "state": { - "file": "index.md", "options": { "collapse-filter": true, "search": "", @@ -119,9 +114,7 @@ "type": "leaf", "state": { "type": "file-properties", - "state": { - "file": "index.md" - } + "state": {} } } ] @@ -135,9 +128,7 @@ "type": "leaf", "state": { "type": "outline", - "state": { - "file": "index.md" - } + "state": {} } }, { @@ -146,7 +137,6 @@ "state": { "type": "backlink", "state": { - "file": "index.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -163,7 +153,6 @@ "state": { "type": "outgoing-link", "state": { - "file": "index.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -183,12 +172,13 @@ "command-palette:Open command palette": false } }, - "active": "509afef58ce99456", + "active": "ccb4ddac2b13c057", "lastOpenFiles": [ - "Text Editors/Neovim/Neovim.md", + "Shells/ZSH/ZSH.md", "index.md", - "Operating Systems/Arch Linux/Contents/Automatic Customization.md", "Terminals/Termux/Termux.md", + "Text Editors/Neovim/Neovim.md", + "Operating Systems/Arch Linux/Contents/Automatic Customization.md", "Operating Systems/Arch Linux/Contents/Setting Up Waybar.md", "Operating Systems/Arch Linux/Contents/Setting Up dunst.md", "Operating Systems/Arch Linux/Contents/Setting Up SDDM.md", @@ -200,7 +190,6 @@ "Operating Systems/Arch Linux/Contents/Environment.md", "Operating Systems/Arch Linux/Arch Linux.md", "Operating Systems/Fedora Workstation/Fedora Workstation.md", - "Shells/ZSH/ZSH.md", "Operating Systems/Arch Linux/Contents", "Operating Systems/Arch Linux", "assets/images/banner/SetupGuides-banner.png", diff --git a/Shells/ZSH/ZSH.md b/Shells/ZSH/ZSH.md index 03438be..8fba89d 100644 --- a/Shells/ZSH/ZSH.md +++ b/Shells/ZSH/ZSH.md @@ -55,11 +55,11 @@ It will also install the following packages for productivity: The installation script has been tested on the following platforms: -- [Arch Linux](https://archlinux.org/) -- [Fedora Workstation](https://fedoraproject.org/workstation) 38/39 +- [[Arch Linux]] +- [[Fedora Workstation]] 38/39 - [Kali Linux](https://kali.org/) (Windows Subsystem for Linux) - [Linux Mint](https://linuxmint.com/) 21 -- [Termux](https://termux.dev/) Android Terminal Emulator +- [[Termux]] Android Terminal Emulator ### Automatic Installation & Customization @@ -69,17 +69,17 @@ The installation script has been tested on the following platforms: Download and run the install script using either of the following commands: -- Using _wget_: +- Using *curl*: ```bash - bash <(wget -q -O - "https://raw.githubusercontent.com/SetupGuides/ZSH/main/install") install + bash <(curl -sSf "https://raw.githubusercontent.com/Chris1320/SetupGuides-ZSH/main/install") install ``` -- Using _curl_: +- Using *wget*: ```bash - bash <(curl -sSf "https://raw.githubusercontent.com/SetupGuides/ZSH/main/install") install + bash <(wget -q -O - "https://raw.githubusercontent.com/Chris1320/SetupGuides-ZSH/main/install") install ``` To disable changing the default shell and opening ZSH, run with `--install-only` flag. Example: ```bash -bash <(curl -sSf "https://raw.githubusercontent.com/SetupGuides/ZSH/main/install") install --install-only +bash <(curl -sSf "https://raw.githubusercontent.com/Chris1320/SetupGuides-ZSH/main/install") install --install-only ```