Compare commits

...

3 commits

Author SHA1 Message Date
dc78a8f5d9 Created setup script for fprintd 2025-09-05 11:27:43 -04:00
e8911c0f97 Added fprintd to deps 2025-09-05 11:27:29 -04:00
a89fa1d99c Fixed KDE_THEMES bug 2025-09-05 11:27:20 -04:00

View file

@ -73,6 +73,7 @@ kde_themes() {
} }
kde() { kde() {
kde_install kde_install
kde_themes
} }
## SWAY ## ## SWAY ##
sway_install() { sway_install() {
@ -135,7 +136,7 @@ install_yay() {
install_pacman() { install_pacman() {
# Base Deps # Base Deps
$SYS_INSTALL net-tools flatpak fish $SYS_INSTALL net-tools flatpak fish
$SYS_INSTALL sof-firmware $SYS_INSTALL sof-firmware fprintd
$SYS_INSTALL hunspell-en_us noto-fonts-emoji $SYS_INSTALL hunspell-en_us noto-fonts-emoji
# Virtualization # Virtualization
@ -187,6 +188,10 @@ install_flat() {
$FLH_INSTALL flathub org.vinegarhq.Sober $FLH_INSTALL flathub org.vinegarhq.Sober
$FLH_INSTALL flathub org.libretro.RetroArch $FLH_INSTALL flathub org.libretro.RetroArch
} }
setup_fprintd() {
sudo rm -f /etc/pam.d/system-auth
sudo wget $HOME_SERVER/Configs/fprintd.conf -O /etc/pam.d/system-auth
}
# Entry Point # Entry Point
main() { main() {
@ -206,6 +211,7 @@ main() {
install_pacman install_pacman
install_aur install_aur
install_flat install_flat
setup_fprintd
# Enabling Daemons # # Enabling Daemons #
sudo systemctl enable --now libvirtd sudo systemctl enable --now libvirtd