dotfiles/arch-sway.sh

28 lines
1.1 KiB
Bash
Raw Normal View History

2023-11-20 00:48:36 -06:00
#!/usr/bin/env bash
if [ $(whoami) == "root" ]; then
echo "Run as a normal user, not root"
exit 1
fi
GIT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
# gnome-keyring is for VS Code
yay -S gnome-keyring --noconfirm --needed
yay -S swaylock swaybg --noconfirm --needed
2023-11-23 16:02:03 -06:00
yay -S iwgtk --noconfirm --needed
2023-11-20 12:09:00 -06:00
yay -S pipewire-pulse pavucontrol blueman bluetooth-support qpwgraph --noconfirm --needed
2023-11-20 00:48:36 -06:00
yay -S brightnessctl --noconfirm --needed
2023-11-20 12:28:16 -06:00
yay -S nemo gnome-calculator --noconfirm --needed
yay -S i3status j4-dmenu-desktop --noconfirm --needed
2023-11-20 00:48:36 -06:00
# Install catppuccin grub theme
git clone --depth=1 https://github.com/catppuccin/grub
sudo cp -r ./grub/src/* /usr/share/grub/themes/
rm -rf grub/
sudo sed -i 's/#GRUB_THEME="\/path\/to\/gfxtheme"/GRUB_THEME=\/usr\/share\/grub\/themes\/catppuccin-mocha-grub-theme\/theme.txt/g' /etc/default/grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
2023-11-20 12:09:00 -06:00
# greetd, replaced by ly which should be preinstalled
#yay -S greetd --noconfirm --needed
#sudo cp $GIT_DIR/greetd/config.toml /etc/greetd/config.toml
#sudo systemctl enable greetd.service