added dots

This commit is contained in:
Darkkal44
2023-04-13 22:38:54 +05:30
parent 763c026c00
commit 72dbb9c4a1
3255 changed files with 1689795 additions and 0 deletions
Executable
+29
View File
@@ -0,0 +1,29 @@
#!/bin/bash
# Update system and install Git
sudo pacman -Syu git --noconfirm
# Clone and install Paru
git clone https://aur.archlinux.org/paru-bin.git && cd paru-bin && makepkg -si --noconfirm && cd ..
# Install necessary packages using Paru
paru -Syu base-devel qtile python-psutil pywal-git picom-jonaburg-fix dunst zsh starship mpd ncmpcpp playerctl brightnessctl alacritty pfetch htop flameshot thunar roficlip rofi ranger cava pulseaudio pavucontrol neovim vim git sddm --noconfirm
# Set Zsh as the default shell
chsh -s $(which zsh)
# Install Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
# Install Zsh plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# Clone and install Cozytile
p -R ./. ~/
cp -R ~/Fonts/Jetbrains/ttf/. ~/.local/share/fonts/
# Enable and start SDDM
sudo systemctl enable sddm && sudo systemctl start sddm