From 2a456f5d55f471038da03ac5979ec55bb56d1c7c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 22 Feb 2017 18:18:01 -0800 Subject: [PATCH] [Linux] No edit when installing arch dependencies --- tasks/shell/arch_dependencies.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/shell/arch_dependencies.sh b/tasks/shell/arch_dependencies.sh index 6c220521..c2559bc2 100755 --- a/tasks/shell/arch_dependencies.sh +++ b/tasks/shell/arch_dependencies.sh @@ -11,7 +11,7 @@ ESSENTIAL=( "openjdk8-src" "ghc" "cabal-install" "sparkleshare" "rofi" "rxvt-unicode" "keepassxc-git" "xorg-xrandr" "spotify" "htop" "rcm" "networkmanager-applet" "pulseaudio-ctl" "pasystray" "xclip" "copyq" "notification-daemon" - "pavucontrol" "xsettingsd-git" "udiskie" + "pavucontrol" "xsettingsd-git" "udiskie", "python-pip" ) LANGUAGES=( @@ -33,9 +33,9 @@ MACBOOK=( ) install_deps() { - for dependency in indirect_expand "${1-ESSENTIAL}" + for dependency in "${APPEARANCE[@]}" do - pacaur -S $dependency --noconfirm + pacaur -S $dependency --noconfirm --noedit --needed done }