adding tutorial (video coming soon)
This commit is contained in:
@@ -9,5 +9,4 @@ columns=1
|
|||||||
no_actions=true
|
no_actions=true
|
||||||
hide_scroll=true
|
hide_scroll=true
|
||||||
width=800
|
width=800
|
||||||
height=475
|
height=475
|
||||||
style = /home/rionzaphkiel/.config/wofi/style.css
|
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +0,0 @@
|
|||||||
# Ignore all images by default
|
|
||||||
|
|
||||||
images/*
|
|
||||||
@@ -720,6 +720,7 @@ Quick setup instructions:
|
|||||||
|
|
||||||
3. **Symlink the scripts**
|
3. **Symlink the scripts**
|
||||||
```bash
|
```bash
|
||||||
|
mkdir -p ~/.local/bin
|
||||||
ln -s ~/.rion-dotfiles/.script/* ~/.local/bin
|
ln -s ~/.rion-dotfiles/.script/* ~/.local/bin
|
||||||
```
|
```
|
||||||
4. **Make scripts executable**
|
4. **Make scripts executable**
|
||||||
|
|||||||
138
TUTORIAL.md
Normal file
138
TUTORIAL.md
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<div align="center">
|
||||||
|
|
||||||
|
[](https://git.io/typing-svg)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
# 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/)
|
||||||
|
|
||||||
|
<div align=center>
|
||||||
|
|
||||||
|
[](https://git.io/typing-svg)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<table align="center">
|
||||||
|
<tr>
|
||||||
|
<td align="center">
|
||||||
|
<img src="https://github.com/SeraphimeZelel/rion-ricing/blob/main/images/endfield/lort_haimao.jpg" alt="whenfield" width="300">
|
||||||
|
</td>
|
||||||
|
<td align="center">
|
||||||
|
<img src="https://github.com/SeraphimeZelel/rion-ricing/blob/main/images/endfield/cbt.png" alt="cbt" width="300">
|
||||||
|
</td>
|
||||||
|
<td align="center">
|
||||||
|
<img src="https://github.com/SeraphimeZelel/rion-ricing/blob/main/images/gif/endfieldtomorrow.gif" alt="endfieldtomorrow" width="300"><br>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
BIN
images/endfield/cbt.png
Normal file
BIN
images/endfield/cbt.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 680 KiB |
BIN
images/endfield/lort_haimao.jpg
Normal file
BIN
images/endfield/lort_haimao.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 125 KiB |
Reference in New Issue
Block a user