progs lines can be commented

This commit is contained in:
Luke Smith 2018-12-20 11:54:26 -05:00
parent 2a59b88834
commit 91ba14840f
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252
3 changed files with 3 additions and 3 deletions

View File

@ -3,4 +3,4 @@ RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L] RewriteRule ^([^\.]+)$ $1.html [NC,L]
Redirect /larbs.sh https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/larbs.sh Redirect /larbs.sh https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/larbs.sh
Redirect /arch.sh https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/testing/arch.sh Redirect /arch.sh https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/testing/arch.sh
ErrorDocument 404 /index.html

View File

@ -93,7 +93,7 @@ aurinstall() { \
} }
installationloop() { \ installationloop() { \
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" > /tmp/progs.csv ([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' > /tmp/progs.csv
total=$(wc -l < /tmp/progs.csv) total=$(wc -l < /tmp/progs.csv)
aurinstalled=$(pacman -Qm | awk '{print $1}') aurinstalled=$(pacman -Qm | awk '{print $1}')
while IFS=, read -r tag program comment; do while IFS=, read -r tag program comment; do

View File

@ -1,4 +1,4 @@
TAG,NAME IN REPO (or git url),PURPOSE (should be a verb phrase to sound right while installing) #TAG,NAME IN REPO (or git url),PURPOSE (should be a verb phrase to sound right while installing)
,i3-gaps,"is the main graphical user interface and window manager." ,i3-gaps,"is the main graphical user interface and window manager."
,xorg-server,"is the graphical server." ,xorg-server,"is the graphical server."
,xorg-xwininfo,"allows querying information about windows." ,xorg-xwininfo,"allows querying information about windows."

1 TAG #TAG NAME IN REPO (or git url) PURPOSE (should be a verb phrase to sound right while installing)
2 i3-gaps is the main graphical user interface and window manager.
3 xorg-server is the graphical server.
4 xorg-xwininfo allows querying information about windows.