From 7c6e686236566fbc183b2198f272c9df0a16f25f Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Fri, 21 Jan 2022 19:56:29 -0500 Subject: [PATCH] fix #408 --- larbs.sh | 4 ++-- progs.csv | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/larbs.sh b/larbs.sh index e525592..4a179cc 100644 --- a/larbs.sh +++ b/larbs.sh @@ -57,7 +57,7 @@ preinstallmsg() { \ adduserandpass() { \ # Adds user `$name` with password $pass1. dialog --infobox "Adding user \"$name\"..." 4 50 - useradd -m -g wheel -s /bin/zsh "$name" >/dev/null 2>&1 || + useradd -m -G wheel -s /bin/zsh "$name" >/dev/null 2>&1 || usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name" export repodir="/home/$name/.local/src"; mkdir -p "$repodir"; chown -R "$name":wheel "$(dirname "$repodir")" echo "$name:$pass1" | chpasswd @@ -78,7 +78,7 @@ refreshkeys() { \ Include = /etc/pacman.d/mirrorlist-arch" >> /etc/pacman.conf done pacman -Sy >/dev/null 2>&1 - pacman-key --populate archlinux + pacman-key --populate archlinux >/dev/null 2>&1 ;; esac ;} diff --git a/progs.csv b/progs.csv index e7db8c6..f443450 100644 --- a/progs.csv +++ b/progs.csv @@ -17,6 +17,7 @@ A,lf-git,"is an extensive terminal file manager that everyone likes." ,ffmpeg,"can record and splice video and audio on the command line." ,gnome-keyring,"serves as the system keyring." A,gtk-theme-arc-gruvbox-git,"gives the dark GTK theme used in LARBS." +,python-qdarkstyle,"provides a dark Qt theme." ,neovim,"a tidier vim with some useful features" ,mpd,"is a lightweight music daemon." ,mpc,"is a terminal interface for mpd."