all distros and wms in one

This commit is contained in:
Luke Smith 2019-11-23 23:12:18 -05:00
parent de8fcf66b8
commit ec549568dc
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252
2 changed files with 31 additions and 18 deletions

View File

@ -14,6 +14,8 @@ while getopts ":a:r:b:p:h" o; do case "${o}" in
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit ;;
esac done
[ -z "$dotfilesrepo" ] && dotfilesrepo="https://github.com/lukesmithxyz/voidrice.git"
[ -z "$progsfile" ] && progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/progs.csv"
[ -z "$aurhelper" ] && aurhelper="yay"
[ -z "$repobranch" ] && repobranch="master"
@ -21,10 +23,13 @@ esac done
if type xbps-install >/dev/null 2>&1; then
installpkg(){ xbps-install -y "$1" >/dev/null 2>&1 ;}
grepseq="\"^[PGV]*,\""
elif type apt >/dev/null 2>&1; then
installpkg(){ apt-get install -y "$1" >/dev/null 2>&1 ;}
grepseq="\"^[PGU]*,\""
else
installpkg(){ pacman --noconfirm --needed -S "$1" >/dev/null 2>&1 ;}
grepseq="\"^[PGA]*,\""
fi
error() { clear; printf "ERROR:\\n%s\\n" "$1"; exit;}
@ -34,19 +39,8 @@ welcomemsg() { \
}
selectdotfiles() { \
edition="$(dialog --title "Select LARBS version." --menu "Select which version of LARBS you wish to install:" 12 70 2 dwm "The current version of LARBS using suckless's dwm." i3 "The legacy version of LARBS using i3." both "Install both versions for good measure!" custom "If you are supplying commandline options for LARBS." 3>&1 1>&2 2>&3 3>&1)" || error "User exited."
case "$edition" in
dwm) dotfilesrepo="https://github.com/lukesmithxyz/voidrice.git" ; repobranch="master" ; progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/progs.csv" ;;
i3) dotfilesrepo="https://github.com/lukesmithxyz/voidrice.git" ; repobranch="master" ; progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/legacy.csv" ;;
both) dotfilesrepo="https://github.com/lukesmithxyz/voidrice.git" ; repobranch="master" ; progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/legacy.csv\\nhttps://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/progs.csv" ;;
esac ;}
selectdefault() { \
edition="$(dialog --nocancel --title "Which should be default?" --menu "Excellent! Which version do you want to start off as the default? This can be changed at any time afterwards." 11 50 2 dwm "dwm" i3 "i3" 3>&1 1>&2 2>&3 3>&1)"
case "$edition" in
dwm) edition="dwm" ;;
i3) edition="i3" ;;
esac ;}
edition="$(dialog --title "Select LARBS version." --menu "Select which version of LARBS you wish to have as default:" 10 70 2 i3 "The classic version of LARBS using i3." dwm "The version of LARBS using suckless's dwm." custom "If you are supplying commandline options for LARBS." 3>&1 1>&2 2>&3 3>&1)" || error "User exited."
}
getuserandpass() { \
# Prompts user for new username an password.
@ -126,17 +120,17 @@ pipinstall() { \
}
installationloop() { \
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || ( rm -f /tmp/progs.csv; { echo "$progsfile" | xargs -I {} curl -Ls {} ;} | sed '/^#/d' | sort -uR | shuf >> /tmp/progs.csv)
([ -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}')
while IFS=, read -r tag program comment; do
n=$((n+1))
echo "$comment" | grep "^\".*\"$" >/dev/null 2>&1 && comment="$(echo "$comment" | sed "s/\(^\"\|\"$\)//g")"
case "$tag" in
"") maininstall "$program" "$comment" ;;
"A") aurinstall "$program" "$comment" ;;
"G") gitmakeinstall "$program" "$comment" ;;
"P") pipinstall "$program" "$comment" ;;
*) maininstall "$program" "$comment" ;;
esac
done < /tmp/progs.csv ;}
@ -170,7 +164,6 @@ installpkg dialog || error "Are you sure you're running this as the root user a
# Welcome user and pick dotfiles.
welcomemsg || error "User exited."
selectdotfiles || error "User exited."
[ "$edition" = "both" ] && selectdefault
# Get and verify username and password.
getuserandpass || error "User exited."

View File

@ -1,18 +1,27 @@
#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."
,xorg-server,"is the graphical server."
,xorg-xwininfo,"allows querying information about windows."
,xorg-xinit,"starts the graphical server."
V,xorg-minimal,"is the graphical server."
V,xorg-fonts,"is a font package."
V,libX11-devel,"is required for the compilation of some programs."
,sxhkd,"binds keys."
I,libXft-devel,"is required for the compilation of some programs."
I,gcr-devel,"is required for the compilation of some programs."
I,fontconfig-devel,"is required for the compilation of some programs."
,ttf-inconsolata,"is the monospace font of LARBS."
,ttf-linux-libertine,"provides the sans and serif fonts for LARBS."
A,lf-bin,"is an extensive terminal file manager that everyone likes."
A,ranger-git,"is an extensive terminal file manager that everyone likes."
,arandr,"is a UI for screen adjustment."
,bc,"is used for a dropdown calculator."
,calcurse,"is a lightweight terminal-based calendar."
,xcompmgr,"is for transparency and removing screen-tearing."
,xorg-xprop,"is a tool for detecting window properties."
V,xprop,"is a tool for detecting window properties."
,dosfstools,"allows your computer to access dos-like filesystems."
,libnotify,"allows desktop notifications."
V,dbus,"facilitates inter-process communication."
,dunst,"is a suckless notification system."
,exfat-utils,"allows management of FAT drives."
,sxiv,"is a minimalist image viewer."
@ -21,6 +30,8 @@ A,lf-bin,"is an extensive terminal file manager that everyone likes."
,gnome-keyring,"serves as the system keyring."
A,gtk-theme-arc-gruvbox-git,"gives the dark GTK theme used in LARBS."
,neovim,"a tidier vim with some useful features"
,i3blocks,"is the status bar."
,i3lock,"is the screen lock."
,mpd,"is a lightweight music daemon."
,mpc,"is a terminal interface for mpd."
,mpv,"is the patrician's choice video player."
@ -28,6 +39,7 @@ A,gtk-theme-arc-gruvbox-git,"gives the dark GTK theme used in LARBS."
,newsboat,"is a terminal RSS client."
A,brave-bin,"is an elegant browser with built-in adblocking, tor and other features."
,ttf-joypixels,"is a package that gives the system unicode symbols and emojis used in the status bar and elsewhere."
V,font-symbola,"provides unicode and emoji symbols."
A,ttf-symbola,"provides unicode and emoji symbols."
,ntfs-3g,"allows accessing NTFS partitions."
,alsa-utils,"is an audio interface for ALSA."
@ -36,6 +48,7 @@ A,sc-im,"is an Excel-like terminal spreadsheet manager."
,socat,"is a socket utility."
,tmux,"is a terminal multiplexer and the dropdown window in LARBS."
,unclutter,"hides an inactive mouse."
V,unclutter-xfixes,"hides an inactive mouse."
,unrar,"extracts rar's."
,unzip,"unzips zips."
A,urlscan,"parses URLs in the terminal allowing keyboard-based selection."
@ -44,11 +57,12 @@ A,urlscan,"parses URLs in the terminal allowing keyboard-based selection."
,xclip,"allows for copying and pasting from the command line."
,xdotool,"provides window action utilities on the command line."
,xorg-xdpyinfo,"aids with resolution determination and screen recording."
V,xdpyinfo,"aids with resolution determination and screen recording."
,youtube-dl,"can download any YouTube video (or playlist or channel) when given the link."
,zathura,"is a pdf viewer with vim-like bindings."
,zathura-djvu,"gives zathura the ability to read .djvu files."
,zathura-pdf-mupdf,"allows mupdf pdf compatibility in zathura."
,chafa,"generates approximate image previews in the terminal."
A,python-ueberzug,"generates image previews in ranger and other terminal programs."
,poppler,"manipulates .pdfs and gives .pdf previews and other .pdf functions."
,mediainfo,"shows audio and video information."
,atool,"manages and gives information about archives."
@ -57,7 +71,13 @@ A,urlscan,"parses URLs in the terminal allowing keyboard-based selection."
,xorg-xbacklight,"enables changing screen brightness levels."
,zsh-syntax-highlighting,"provides fish-like syntax highlighting in the shell."
A,task-spooler,"queues commands or files for download."
V,ts,"queues commands or files for download."
A,simple-mtpfs,"enables the mounting of cell phones."
V,simple-mtpfs,"enables the mounting of cell phones."
V,setxkbmap,"allows LARBS's unique keyboard bindings."
V,xmodmap,"allows LARBS's unique keyboard bindings."
V,xsetroot,"sets status bar and other X properies."
V,xset,"allows speeding up the X rate."
G,https://github.com/LukeSmithxyz/dwmblocks.git,"serves as the modular status bar."
G,https://github.com/lukesmithxyz/dmenu.git,"runs commands and provides a UI for selection."
G,https://github.com/lukesmithxyz/st.git,"is my custom build of suckless's terminal emulator."

1 #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.
5 xorg-xinit starts the graphical server.
6 V xorg-minimal is the graphical server.
7 V xorg-fonts is a font package.
8 V libX11-devel is required for the compilation of some programs.
9 sxhkd binds keys.
10 I libXft-devel is required for the compilation of some programs.
11 I gcr-devel is required for the compilation of some programs.
12 I fontconfig-devel is required for the compilation of some programs.
13 ttf-inconsolata is the monospace font of LARBS.
14 ttf-linux-libertine provides the sans and serif fonts for LARBS.
15 A lf-bin ranger-git is an extensive terminal file manager that everyone likes.
16 arandr is a UI for screen adjustment.
17 bc is used for a dropdown calculator.
18 calcurse is a lightweight terminal-based calendar.
19 xcompmgr is for transparency and removing screen-tearing.
20 xorg-xprop is a tool for detecting window properties.
21 V xprop is a tool for detecting window properties.
22 dosfstools allows your computer to access dos-like filesystems.
23 libnotify allows desktop notifications.
24 V dbus facilitates inter-process communication.
25 dunst is a suckless notification system.
26 exfat-utils allows management of FAT drives.
27 sxiv is a minimalist image viewer.
30 gnome-keyring serves as the system keyring.
31 A gtk-theme-arc-gruvbox-git gives the dark GTK theme used in LARBS.
32 neovim a tidier vim with some useful features
33 i3blocks is the status bar.
34 i3lock is the screen lock.
35 mpd is a lightweight music daemon.
36 mpc is a terminal interface for mpd.
37 mpv is the patrician's choice video player.
39 newsboat is a terminal RSS client.
40 A brave-bin is an elegant browser with built-in adblocking, tor and other features.
41 ttf-joypixels is a package that gives the system unicode symbols and emojis used in the status bar and elsewhere.
42 V font-symbola provides unicode and emoji symbols.
43 A ttf-symbola provides unicode and emoji symbols.
44 ntfs-3g allows accessing NTFS partitions.
45 alsa-utils is an audio interface for ALSA.
48 socat is a socket utility.
49 tmux is a terminal multiplexer and the dropdown window in LARBS.
50 unclutter hides an inactive mouse.
51 V unclutter-xfixes hides an inactive mouse.
52 unrar extracts rar's.
53 unzip unzips zips.
54 A urlscan parses URLs in the terminal allowing keyboard-based selection.
57 xclip allows for copying and pasting from the command line.
58 xdotool provides window action utilities on the command line.
59 xorg-xdpyinfo aids with resolution determination and screen recording.
60 V xdpyinfo aids with resolution determination and screen recording.
61 youtube-dl can download any YouTube video (or playlist or channel) when given the link.
62 zathura is a pdf viewer with vim-like bindings.
63 zathura-djvu gives zathura the ability to read .djvu files.
64 zathura-pdf-mupdf allows mupdf pdf compatibility in zathura.
65 A chafa python-ueberzug generates approximate image previews in the terminal. generates image previews in ranger and other terminal programs.
66 poppler manipulates .pdfs and gives .pdf previews and other .pdf functions.
67 mediainfo shows audio and video information.
68 atool manages and gives information about archives.
71 xorg-xbacklight enables changing screen brightness levels.
72 zsh-syntax-highlighting provides fish-like syntax highlighting in the shell.
73 A task-spooler queues commands or files for download.
74 V ts queues commands or files for download.
75 A simple-mtpfs enables the mounting of cell phones.
76 V simple-mtpfs enables the mounting of cell phones.
77 V setxkbmap allows LARBS's unique keyboard bindings.
78 V xmodmap allows LARBS's unique keyboard bindings.
79 V xsetroot sets status bar and other X properies.
80 V xset allows speeding up the X rate.
81 G https://github.com/LukeSmithxyz/dwmblocks.git serves as the modular status bar.
82 G https://github.com/lukesmithxyz/dmenu.git runs commands and provides a UI for selection.
83 G https://github.com/lukesmithxyz/st.git is my custom build of suckless's terminal emulator.