Hyprland-dotfiles/2-qtile.sh

26 lines
735 B
Bash
Raw Normal View History

2023-02-17 11:11:48 -05:00
#!/bin/bash
# ------------------------------------------------------
# Install Script for Qtile
# yay must be installed
# Copy this script into the home directory and start.
# ------------------------------------------------------
read -p "Do you want to start? " s
echo "START QTILE INSTALLATION..."
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
echo "-> Install main packages"
sudo pacman -S qtile
# ------------------------------------------------------
# Create symbolic links
# ------------------------------------------------------
echo "-> Create symbolic links"
rm ~/.xinitrc
ln -s ~/dotfiles/.xinitrc ~/.xinitrc
echo "DONE!"