πͺ Wlogout
+
+
+
+
+
+
+
### Overview
A Wayland-based logout menu.
@@ -261,6 +358,20 @@ A Wayland-based logout menu.
π Wofi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
### Overview
Wofi is a launcher/menu program for wlroots-based Wayland compositors such as sway.
@@ -335,7 +446,45 @@ pip install colorz
pip install haishoku
```
-#### Color Backend Palette Comparison
+#### Color Backend Palette Comparison
+
+
+
+
+
+
+ 
+ default
+ |
+
+ 
+ colorz
+ |
+
+ 
+ haishoku
+ |
+
+
+
+
+
+
+
+
+ 
+ default
+ |
+
+ 
+ colorz
+ |
+
+ 
+ haishoku
+ |
+
+
---
@@ -385,25 +534,91 @@ pip install haishoku
-## Help
+## π Help & Setup Guide
-A quick setup
+> [!WARNING]
+> The instructions below will **overwrite your existing config files**.
+> Donβt worry β your old configs will be safely moved into a backup folder with a timestamp.
-1. Clone the repo
-2. Symlink the Config
+Quick setup instructions:
-3. Symlink the Script
+1. **Clone the repo**
+ ```bash
+ git clone https://github.com/SeraphimeZelel/rion-ricing.git ~/.rion-dotfiles
+ ```
+2. **Symlink the config files**
+ ```bash
+ #!/bin/bash
-3. Chmod the Script.
+ DOTFILES="$HOME/.rion-dotfiles/.config"
+ CONFIG="$HOME/.config"
+ BACKUP="$HOME/.config-backup-$(date +%Y%m%d_%H%M%S)"
-Later, I'll make the video on how to setup from the start (in nobara).
+ mkdir -p "$BACKUP"
-## Notes
+ for dir in "$DOTFILES"/*; do
+ name=$(basename "$dir")
+
+ # if ~/.config/dir exists, move it to backup
+ if [ -e "$CONFIG/$name" ]; then
+ echo "Backing up $CONFIG/$name β $BACKUP/$name"
+ mv "$CONFIG/$name" "$BACKUP/"
+ fi
+
+ # create symlink
+ echo "Linking $dir β $CONFIG/$name"
+ ln -s "$dir" "$CONFIG/$name"
+ done
+
+ echo "β
All configs linked. Backup saved in $BACKUP"
+ ```
+3. **Symlink the scripts**
+ ```bash
+ ln -s ~/.rion-dotfiles/.script/* ~/.local/bin
+ ```
+4. **Make scripts executable**
+ ```bash
+ chmod +x ~/.local/bin/*
+ ```
+
+## π Notes
+If `wallpaper-picker.sh` fails to set your wallpaper, try renaming the file with the prefix `Anything_`.
+ Example:
+ ```
+ Endfield_NotReal.png
+ Endfield_Tomorrow.png
+ ```
+
+### β¨οΈ Keyboard Shortcut
+
+| Name | Command | Shortcut |
+|------------------|-----------|-----------|
+| File Manager | `nautilus` | `Super + E` |
+| Wallpaper Picker | `/home/yourname/.local/bin/wallpaper-picker.sh` | `Alt + W` |
+| WezTerm | `wezterm` | `Super + T` |
+| wlogout | `wlogout` | `Alt + L` |
+| wofi | `wofi` | `Alt + F` |
+
+---
[](https://git.io/typing-svg)
-
\ No newline at end of file
+
+
+
diff --git a/images/gif/EndfieldNotReal.gif b/images/gif/EndfieldNotReal.gif
new file mode 100644
index 0000000..05796ad
Binary files /dev/null and b/images/gif/EndfieldNotReal.gif differ
diff --git a/images/gif/copium.gif b/images/gif/copium.gif
new file mode 100644
index 0000000..8ac31b0
Binary files /dev/null and b/images/gif/copium.gif differ
diff --git a/images/gif/endfieldtomorrow.gif b/images/gif/endfieldtomorrow.gif
new file mode 100644
index 0000000..2b19f5f
Binary files /dev/null and b/images/gif/endfieldtomorrow.gif differ