Compare commits

..

No commits in common. "98fbfa5390e728a864ae17ff13237efa740db6b5" and "679a8b7a2b8c58c23cf66d35d173b7260e8c91d7" have entirely different histories.

2 changed files with 6 additions and 17 deletions

View File

@ -1,4 +1,5 @@
PAC,alsa-utils,Utilities for ALSA
PAC,breeze-icons,Icon set
PAC,clang,C compiler
PAC,cmake,Meta-build system
PAC,cmus,Terminal music player
@ -19,7 +20,7 @@ PAC,libxinerama,X11 extension which provides support for extending a desktop acr
PAC,lxsession,Graphical authentication agent
PAC,man,Interface to system manuals
PAC,maxima,Computer algebra system
AUR,gtk-theme-material-black,GTK theme
AUR,midnight-gtk-theme-git,GTK theme
AUR,mmv,Batch renamer
PAC,mpv,Media player
PAC,mupdf,Lightweight PDF viewer

1 PAC alsa-utils Utilities for ALSA
2 PAC breeze-icons Icon set
3 PAC clang C compiler
4 PAC cmake Meta-build system
5 PAC cmus Terminal music player
20 PAC lxsession Graphical authentication agent
21 PAC man Interface to system manuals
22 PAC maxima Computer algebra system
23 AUR gtk-theme-material-black midnight-gtk-theme-git GTK theme
24 AUR mmv Batch renamer
25 PAC mpv Media player
26 PAC mupdf Lightweight PDF viewer

View File

@ -32,7 +32,6 @@ cd "$(dirname "$0")"
### URLs ###
DOTFILES="https://github.com/augustogunsch/dotfiles"
VIM_PLUGIN_CFG="https://github.com/augustogunsch/vim-plugin-config"
PACKAGES_URL="https://raw.githubusercontent.com/augustogunsch/install-arch/master/packages.csv"
### COLORS ###
@ -199,7 +198,7 @@ install_aur() {
echo -ne "Installing ${LGREEN}$1${NC} from AUR ($2)..."
fi
set +e
se +e
quiet sudo -u nobody GOCACHE="$AUR_BUILD_DIR/go" makepkg --noconfirm
if [ $? -eq 0 ]; then
set +e
@ -463,7 +462,6 @@ configure_doas() {
append_line $DOAS_CONF "permit persist $DOAS_USER as root"
append_line $DOAS_CONF "permit nopass $DOAS_USER as root cmd pacman args -Syu"
append_line $DOAS_CONF "permit nopass $DOAS_USER as root cmd pacman args -Syyu"
append_line $DOAS_CONF "permit nopass root"
fi
}
@ -509,26 +507,16 @@ configure_nvim_for() {
ultra_quiet sudo -u "$1" nvim -E -c PlugInstall -c qall
set -e
echo "done"
echo -n "Downloading neovim plugins configuration (~/.vim-plugin-config)..."
quiet sudo -u "$1" git clone "$VIM_PLUGIN_CFG" ./.vim-plugin-config
echo "done"
echo -n "Linking neovim plugins configuration..."
qpushd ./.vim-plugin-config
quiet sudo -u "$1" ./install.sh
echo "done"
qpopd
}
# pwd must be the home dir of the user
install_dotfiles_for() {
echo -n "Downloading dotfiles for $1 (~/.dotfiles)..."
quiet sudo -u "$1" git clone "$DOTFILES" ./.dotfiles
echo -n "Downloading dotfiles for $1 (~/dotfiles)..."
quiet sudo -u "$1" git clone "$DOTFILES" ./dotfiles
echo "done"
echo -n "Linking dotfiles..."
qpushd ./.dotfiles
qpushd "./dotfiles"
quiet sudo -u "$1" ./install.sh
echo "done"
qpopd