[](https://git.io/typing-svg)
# Video Tutorial (Available Soon)
How to setup My Fedora Linux dotfiles for a Hyprland-looks in **GNOME**.
**ENJOY!**
-Rion Zaphkiel
---
## Improving Your Terminal
##### zsh
###### Installation
```bash
sudo dnf install zsh
```
##### oh-my-zsh
###### Installation
```bash
sudo dnf install curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```
###### Fonts
- Firamono Nerd Font
> https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/FiraMono.zip
- Other Nerd Font
> https://www.nerdfonts.com/
###### Theme
- powerlevel10k
```bash
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
```
- Other Default Theme
> https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
###### Plugins
- zsh-autosuggestions
```bash
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
```
- zsh-syntax-highlighting
```bash
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
```
- other plugins
> https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins
##### wezterm
###### Installation
```bash
sudo dnf copr enable wezfurlong/wezterm-nightly
sudo dnf install wezterm
```
## Installing the Essential Applications
##### Wofi
###### Installation
```bash
sudo dnf install wofi
```
##### Wlogout
###### Installation
```bash
sudo dnf install wlogout
```
##### BetterDiscord
###### Installation
- Discord
```bash
sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install discord
```
- BetterDiscord
```bash
sudo dnf copr enable observeroftime/betterdiscordctl
sudo dnf install betterdiscordctl
betterdiscordctl install ## Adjust it to your flavor
```
## Installing GNOME Extensions
- [Blur My Shell](https://extensions.gnome.org/extension/3193/blur-my-shell/)
- [Clipboard Indicator](https://extensions.gnome.org/extension/779/clipboard-indicator/)
- [Forge](https://extensions.gnome.org/extension/4481/forge/)
- [Just Perfection](https://extensions.gnome.org/extension/3843/just-perfection/)
- [Media Control](https://extensions.gnome.org/extension/4470/media-controls/)
- [Open Bar](https://extensions.gnome.org/extension/6580/open-bar/)
- [Quick Settings Tweaks](https://extensions.gnome.org/extension/5446/quick-settings-tweaker/)
- [System Monitor](https://extensions.gnome.org/extension/1064/system-monitor/)
- [Unblank Lock Screen](https://extensions.gnome.org/extension/1414/unblank/)
- [Workspace Indicator](https://extensions.gnome.org/extension/21/workspace-indicator/)
- [Move Workspace Indicator](https://extensions.gnome.org/extension/7917/move-workspace-indicator/)
[](https://git.io/typing-svg)