Finished?

main
Wojciech Janota 2 years ago
parent 87b9daf314
commit 0e3d4311f7

@ -0,0 +1,17 @@
android-sdk-platform-tools
ani-cli
betterdiscord-installer
betterlockscreen
bluetuith
i3lock-color
libsignal-client
libxft-bgra
ly
networkmanager-dmenu-git
pam-gnupg
polkit-dumb-agent-git
rofi-bluetooth-git
scli-git
signal-cli
yay
ytfzf

@ -0,0 +1,21 @@
bluetooth.service
cronie.service
getty@.service
ly.service
NetworkManager-dispatcher.service
NetworkManager-wait-online.service
NetworkManager.service
systemd-boot-update.service
systemd-homed.service
systemd-network-generator.service
systemd-networkd.service
systemd-pstore.service
systemd-remount-fs.service
systemd-resolved.service
systemd-timesyncd.service
tlp.service
systemd-userdbd.socket
machines.target
reboot.target
remote-cryptsetup.target
remote-fs.target

@ -12,6 +12,10 @@ cp -r ./configs/newsboat ~/.config/
cp -r ./configs/ranger ~/.config/
cp -r ./configs/networkmanager-dmenu ~/.config/
while read service; do
sudo systemctl enable $service;
done < "enabled-services.txt"
mkdir -p ~/.install
echo "Installing nvchad"
@ -74,4 +78,14 @@ git clone https://github.com/LukeSmithxyz/mutt-wizard ~/.install/mutt-wizard
cd ~/.install/mutt-wizard/
sudo make install
echo "Install yay"
git clone https://aur.archlinux.org/yay.git ~/.install/yay
cd ~/.install/yay
makepkg -si
echo "Install AUR packages"
while read aur_package; do
yay -S $aur_package;
done < "aur-package.txt"
echo "All packages installed, all configs are in place!"

Loading…
Cancel
Save