1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-24 04:22:50 -05:00
dotfiles/configure.sh

140 lines
2.5 KiB
Bash
Raw Normal View History

2017-07-24 20:58:23 -04:00
#!/bin/zsh
lnh() {
print -Pn '%B%F{green}### '
print -n $1
print -P ' ###%f%b'
}
lnf() {
print -Pn '%B%F{yellow}>>>%f%b '
}
lnfb() {
2017-07-24 21:10:38 -04:00
print -P '%B%F{yellow}[[[%f%b'
2017-07-24 21:09:14 -04:00
}
2017-07-24 20:58:23 -04:00
lnfbe() {
2017-07-24 21:09:14 -04:00
print -P '%B%F{yellow}]]]'
}
2017-07-24 20:58:23 -04:00
ln() {
Print -Pn '%B%F{yellow}>>> '
Print -n $1
Print -P '%f%b'
}
install_i3() {
if ! (pacman -Q i3-gaps >/dev/null 2>&1);
then
lnh "Installing i3-gaps from AUR..."
yaourt -S i3-gaps --noconfirm
fi;
if ! (pacman -Q i3blocks-gaps-git >/dev/null 2>&1);
then
lnh "Installing i3blocks-gaps-git from AUR..."
yaourt -S i3blocks-gaps-git --noconfirm
fi;
if ! (pacman -Q i3lock >/dev/null 2>&1);
then
lnh "Installing i3lock"
pacman -S i3lock --noconfirm
fi;
if ! (pacman -Q i3lock-fancy-dualmonitors-git >/dev/null 2>&1);
then
lnh "Installing i3lock-fancy"
yaourt -S i3lock-fancy-dualmonitors-git --noconfirm
fi;
if ! (pacman -Q compton >/dev/null 2>&1);
then
lnh "Installing Compton..."
pacman -S compton --noconfirm
fi;
### Configuration Files
lnh "Installing General Configuration Files"
# Compton
lnf
cp -v config/compton/config ~/.config/compton/config
# NCMPCPP config
lnf
cp -v config/termite/ncmpcpp_config ~/.config/termite/ncmpcpp_config
### Install Tools
lnh "Installing General Tools"
mkdir -p ~/Documents/tools
# Wallpaper Tool
lnf
2017-07-24 21:10:38 -04:00
cp -v config/i3/tools/wallpaper.sh ~/Documents/tools/
lnfb
2017-07-24 20:58:23 -04:00
cp -v config/wallpapers/wallpaper* ~/Pictures/
2017-07-24 21:10:38 -04:00
lnfbe
2017-07-24 20:58:23 -04:00
### Install Service Files
lnh "Installing Services"
2017-07-26 14:00:04 -04:00
# Suspend locker
2017-07-24 20:58:23 -04:00
lnf
sudo cp -v config/systemd/system/suspend@.service /etc/systemd/system/
2017-07-26 14:00:04 -04:00
# Auto locker
2017-07-24 20:58:23 -04:00
lnf
sudo cp -v config/systemd/user/locker.service /etc/systemd/user
sudo systemctl daemon-reload
lnh "Enabling Services"
lnf
sudo systemctl enable suspend@$USER.service
lnf
systemctl --user enable locker.service
2017-07-24 21:09:14 -04:00
lnh "Select a Platform"
2017-07-24 20:58:23 -04:00
platform_opt=("Desktop" "Laptop")
select opt in "${platform_opt[@]}"
do
case $opt in
"Desktop")
break
;;
"Laptop")
2017-07-24 21:09:14 -04:00
lnh "Installing i3"
2017-07-24 20:58:23 -04:00
install_i3_laptop
break
;;
*) echo "Invalid Option";;
esac
done
}
install_i3_laptop() {
2017-07-26 14:00:04 -04:00
lnh "Installing Laptop Configuration Files"
# i3blocks
lnf
cp -v config/i3blocks/laptop/config ~/.config/i3blocks/config
lnf
mkdir ~/.config/i3blocks/blocks
lnfb
cp -v config/i3blocks/laptop/config/blocks/* ~/.config/i3blocks/blocks/
lnfbe
2017-07-24 20:58:23 -04:00
}
echo "Select a Window Manager"
wm_opt=("Gnome" "i3")
select opt in "${wm_opt[@]}"
do
case $opt in
"Gnome")
echo "gnome"
break
;;
"i3")
install_i3
break
;;
*) echo "Invalid Option";;
esac
done