added vicinae to setup script

main
The_miro 2026-03-02 08:39:25 +01:00
parent bf066dab47
commit 7cd4c77c66
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ sudo systemctl enable udisks2.service
# 4. Install AUR packages (from hyprland.sh)
echo "Installing AUR packages..."
yay -Syu --answerdiff None --answerclean All hyprland-workspaces bluetuith wvkbd kew wofi-calc walker-bin iwmenu bzmenu ulauncher pinta localsend hyprpwcenter hyprshutdown hyprsysteminfo
yay -Syu --answerdiff None --answerclean All hyprland-workspaces vicinae-bin bluetuith wvkbd kew wofi-calc walker-bin iwmenu bzmenu ulauncher pinta localsend hyprpwcenter hyprshutdown hyprsysteminfo
# 5. EWW bar selection and compilation (from hyprland.sh)
echo "Setting up EWW bar..."
@ -69,7 +69,7 @@ hyprpm add https://github.com/hyprwm/hyprland-plugins
# 10. Copy configs (not symlink, except hypr-usr)
echo "Copying configs..."
CONFIGS=(kitty mimeapps.list walker hypr xfce4 wofi dunst alacritty nwg-dock-hyprland nwg-drawer nwg-panel ulauncher scripts btop gtk-3.0 eww eww-nobattery)
CONFIGS=(kitty mimeapps.list vicinae walker hypr xfce4 wofi dunst alacritty nwg-dock-hyprland nwg-drawer nwg-panel ulauncher scripts btop gtk-3.0 eww eww-nobattery)
for cfg in "${CONFIGS[@]}"; do
rm -rf ~/.config/$cfg
cp -r ~/Dotfiles/desktopenvs/hyprland/$cfg ~/.config/
@ -107,7 +107,7 @@ sudo systemctl start udiskie.service
# 15. Create config update script in home directory
cat << 'EOF' > ~/update-hypr-configs.sh
#!/bin/bash
CONFIGS=(kitty mimeapps.list walker hypr xfce4 wofi dunst alacritty nwg-dock-hyprland nwg-drawer nwg-panel ulauncher scripts btop gtk-3.0 eww eww-nobattery)
CONFIGS=(kitty mimeapps.list walker vicinae hypr xfce4 wofi dunst alacritty nwg-dock-hyprland nwg-drawer nwg-panel ulauncher scripts btop gtk-3.0 eww eww-nobattery)
for cfg in "${CONFIGS[@]}"; do
cp -r ~/Dotfiles/desktopenvs/hyprland/$cfg ~/.config/
done