summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-11-29 06:55:39 -0500
committerGitHub <noreply@github.com>2019-11-29 06:55:39 -0500
commitb148f1cae8a00c380a6cc235a5a61277700058fc (patch)
tree87f323fbcaa9a5b31993a71be6ebf36d0d5f7922
parentba0afe95e5a274013dd64034c1201f3a24955922 (diff)
parent19272dec2b2cb4c9b207fd1f4dce34c2c7d1aa06 (diff)
Merge pull request #138 from J-Merle/master
Small cleanup
-rw-r--r--README.md2
-rw-r--r--larbs.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d899e64..219f397 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ programs).
## Customization
-By default, LARBS uses the programs [here in progs.csv](archi3/progs.csv) and installs
+By default, LARBS uses the programs [here in progs.csv](progs.csv) and installs
[my dotfiles repo (voidrice) here](https://github.com/lukesmithxyz/voidrice),
but you can easily change this by either modifying the default variables at the
beginning of the script or giving the script one of these options:
diff --git a/larbs.sh b/larbs.sh
index 01d77da..c8c03f2 100644
--- a/larbs.sh
+++ b/larbs.sh
@@ -122,7 +122,7 @@ pipinstall() { \
installationloop() { \
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' | eval grep "$grepseq" > /tmp/progs.csv
total=$(wc -l < /tmp/progs.csv)
- aurinstalled=$(pacman -Qm | awk '{print $1}')
+ aurinstalled=$(pacman -Qqm)
while IFS=, read -r tag program comment; do
n=$((n+1))
echo "$comment" | grep "^\".*\"$" >/dev/null 2>&1 && comment="$(echo "$comment" | sed "s/\(^\"\|\"$\)//g")"