From 1d6c53fc50ecffc19e2c514dd16a65042a41a4d0 Mon Sep 17 00:00:00 2001 From: The_miro Date: Mon, 11 Nov 2024 18:41:34 +0100 Subject: [PATCH] removed git config from install script so reuse as public release is possible --- hyprland-full-install-script.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hyprland-full-install-script.sh b/hyprland-full-install-script.sh index b9cf48c..640342d 100644 --- a/hyprland-full-install-script.sh +++ b/hyprland-full-install-script.sh @@ -1,5 +1,5 @@ #install components -sudo pacman -S \ +sudo pacman -Syu \ base \ base-devel \ btop \ @@ -66,7 +66,8 @@ yay-debug \ zip \ zram-generator \ zsh - +#networkmanager setup +systemctl enable NetworkManager.service #starship setup curl -sS https://starship.rs/install.sh | sh #ohmyzsh setup @@ -94,7 +95,6 @@ ln -s ~/Dotfiles/.zshrc ~/.zshrc ln -s ~/Dotfiles/starship.toml ~/.config/starship.toml ln -s ~/Dotfiles/micro/ ~/.config/micro -ln -s ~/Dotfiles/git/.gitconfig ~/.gitconfig #desktop env dotfiles ln -s ~/Dotfiles/desktopenvs/hyprland/waybar/ ~/.config/waybar @@ -107,8 +107,8 @@ chsh -s /usr/bin/zsh homectl update --shell=/usr/bin/zsh #greetd setup -sudo cp -f ~/Dotfiles/desktopenvs/hyprland/greetd-tuigreet/config.toml /etc/greetd/config.toml -sudo systemctl enable greetd.service +cp -f ~/Dotfiles/desktopenvs/hyprland/greetd-tuigreet/config.toml /etc/greetd/config.toml +systemctl enable greetd.service #final reboot systemctl reboot