fixed the install script running on sudo which is dense
parent
86febb86fe
commit
9b47145d45
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
#install components
|
#install components
|
||||||
sudo pacman -S \
|
sudo pacman -S \
|
||||||
base \
|
base \
|
||||||
|
|
@ -67,7 +68,7 @@ zip \
|
||||||
zram-generator \
|
zram-generator \
|
||||||
zsh
|
zsh
|
||||||
#networkmanager setup
|
#networkmanager setup
|
||||||
systemctl enable NetworkManager.service
|
sudo systemctl enable NetworkManager.service
|
||||||
#starship setup
|
#starship setup
|
||||||
curl -sS https://starship.rs/install.sh | sh
|
curl -sS https://starship.rs/install.sh | sh
|
||||||
#ohmyzsh setup
|
#ohmyzsh setup
|
||||||
|
|
@ -107,8 +108,8 @@ chsh -s /usr/bin/zsh
|
||||||
homectl update --shell=/usr/bin/zsh
|
homectl update --shell=/usr/bin/zsh
|
||||||
|
|
||||||
#greetd setup
|
#greetd setup
|
||||||
cp -f ~/Dotfiles/desktopenvs/hyprland/greetd-tuigreet/config.toml /etc/greetd/config.toml
|
sudo cp -f ~/Dotfiles/desktopenvs/hyprland/greetd-tuigreet/config.toml /etc/greetd/config.toml
|
||||||
systemctl enable greetd.service
|
sudo systemctl enable greetd.service
|
||||||
|
|
||||||
#final reboot
|
#final reboot
|
||||||
#systemctl reboot
|
#systemctl reboot
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue