Update setup/modules/Desktop-Enviroments/hyprland-new.sh

main
The_miro 2025-12-03 10:22:43 +01:00
parent fef9cfc235
commit 2a35892a0d
1 changed files with 3 additions and 3 deletions

View File

@ -31,9 +31,9 @@ echo "Setting up EWW bar..."
rm -rf ~/.config/eww
read -n1 -p "Install eww bar for PC, Notebook or Tablet [P,N,T]: " doit
case $doit in
n|N) ln -s ~/Dotfiles/desktopenvs/hyprland/eww/ ~/.config/ ;;
p|P) ln -s ~/Dotfiles/desktopenvs/hyprland/eww-nobattery/ ~/.config/eww ;;
t|T) ln -s ~/Dotfiles/desktopenvs/hyprland/eww-touch/ ~/.config/eww ;;
n|N) cp -rf ~/Dotfiles/desktopenvs/hyprland/eww/ ~/.config/ ;;
p|P) cp -rf ~/Dotfiles/desktopenvs/hyprland/eww-nobattery/ ~/.config/eww ;;
t|T) cp -rf ~/Dotfiles/desktopenvs/hyprland/eww-touch/ ~/.config/eww ;;
*) echo "enter a valid decision" ;;
esac