From 1f9568f37b99ff6577cfdff830bd505c5486a0e1 Mon Sep 17 00:00:00 2001 From: duma799 Date: Sat, 4 Apr 2026 15:09:42 +0400 Subject: [PATCH] docs: update README for new installer (symlinks, no install.sh) --- docs/README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/README.md b/docs/README.md index 61ca3ca..3034a46 100644 --- a/docs/README.md +++ b/docs/README.md @@ -38,13 +38,13 @@ Personal Hyprland configuration focused on productivity and ergonomics. ## Quick Install ```bash -curl -fsSL https://raw.githubusercontent.com/duma799/hyprduma-config/master/install.sh | bash +curl -fsSL https://raw.githubusercontent.com/duma799/hyprduma-config/master/install.py | python3 ``` Or manually: ```bash -git clone https://github.com/duma799/hyprduma-config.git ~/Downloads/hyprduma-config -python3 ~/Downloads/hyprduma-config/install.py +git clone https://github.com/duma799/hyprduma-config.git ~/hyprduma-config +python3 ~/hyprduma-config/install.py ``` The interactive installer handles everything: @@ -265,11 +265,12 @@ hyprduma-config/ ├── sync-caelestia-wallpaper.sh # Sync swaybg wallpaper to Caelestia ├── monitor-handler.py # Restart wallpaper/shell after config reload ├── install.py # Interactive auto-installer -├── install.sh # Curl one-liner bootstrap script ├── wallpapers/ # Included wallpapers -├── wal/templates/ # Pywal templates for Hyprland & Caelestia -├── kitty/kitty.conf # Kitty terminal config with pywal support -├── fastfetch/ # Custom fastfetch config with ASCII art +├── config/ +│ ├── kitty/kitty.conf # Kitty terminal config with pywal support +│ ├── fastfetch/ # Custom fastfetch config with ASCII art +│ ├── nvim/ # Neovim config +│ └── wal/templates/ # Pywal templates for Hyprland & Caelestia ├── KEYBINDS.md # Complete keybindings reference └── PYWAL-SETUP.md # Detailed pywal integration guide ```