Hyprland-dotfiles/1-install.sh

85 lines
3.2 KiB
Bash
Raw Normal View History

2023-02-17 11:11:48 -05:00
#!/bin/bash
2023-02-26 10:32:15 -05:00
# _ _ __ _ _
# __| | ___ | |_ / _(_) | ___ ___
# / _` |/ _ \| __| |_| | |/ _ \/ __|
# | (_| | (_) | |_| _| | | __/\__ \
# \__,_|\___/ \__|_| |_|_|\___||___/
#
# by Stephan Raabe (2023)
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Install Script for dotfiles and configuration
# yay must be installed
# ------------------------------------------------------
read -p "Do you want to start? yay must be installed! " s
echo "START INSTALLATION..."
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
echo "-> Install main packages"
2023-03-30 05:16:52 -04:00
sudo pacman -S alacritty scrot nitrogen picom starship slock neomutt neovim rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator polybar
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
echo "-> Install AUR packages"
2023-03-15 05:13:45 -04:00
yay -S brave-bin pywal timeshift tela-circle-icon-theme-orange pfetch preload
# ------------------------------------------------------
# Enable services
# ------------------------------------------------------
sudo systemctl enable preload
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Install Pip packages
# ------------------------------------------------------
echo "-> Install Pip packages"
2023-03-02 03:45:31 -05:00
pip install psutil rich click
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Create symbolic links
# ------------------------------------------------------
echo "-> Create symbolic links"
mkdir ~/.config
ln -s ~/dotfiles/qtile/ ~/.config
ln -s ~/dotfiles/alacritty/ ~/.config
ln -s ~/dotfiles/neomutt/ ~/.config
ln -s ~/dotfiles/picom/ ~/.config
ln -s ~/dotfiles/ranger/ ~/.config
ln -s ~/dotfiles/rofi/ ~/.config
ln -s ~/dotfiles/spotifyd/ ~/.config
ln -s ~/dotfiles/vim/ ~/.config
2023-02-26 04:52:21 -05:00
ln -s ~/dotfiles/nvim/ ~/.config
2023-04-04 05:22:52 -04:00
ln -s ~/dotfiles/polybar ~/.config
2023-02-17 11:11:48 -05:00
ln -s ~/dotfiles/starship/starship.toml ~/.config/starship.toml
rm ~/.bashrc
ln -s ~/dotfiles/.bashrc ~/.bashrc
2023-02-22 05:06:09 -05:00
rm ~/.gtkrc-2.0
ln -s ~/dotfiles/.gtkrc-2.0 ~/.gtkrc-2.0
2023-02-22 08:35:50 -05:00
rm -r ~/.config/gtk-3.0/
ln -s ~/dotfiles/gtk-3.0/ ~/.config/
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Clone wallpapers
# ------------------------------------------------------
echo "-> Install wallpapers"
git clone https://gitlab.com/stephan-raabe/wallpaper.git ~/wallpaper
# ------------------------------------------------------
# Install startship plain text
# ------------------------------------------------------
2023-02-19 04:54:04 -05:00
# starship preset plain-text-symbols > ~/.config/starship.toml
2023-02-17 11:11:48 -05:00
2023-04-04 05:22:52 -04:00
# ------------------------------------------------------
# Install custom issue (login prompt)
# ------------------------------------------------------
sudo cp ~/dotfiles/issue /etc/issue
2023-02-17 11:11:48 -05:00
# ------------------------------------------------------
# Init pywal
# ------------------------------------------------------
2023-02-19 04:54:04 -05:00
wal -i ~/wallpaper/default.jpg -n
2023-02-17 11:11:48 -05:00
2023-03-15 05:13:45 -04:00
echo "DONE! Reboot suggested..."