diff options
author | Karel Kočí <cynerd@email.cz> | 2016-10-30 11:32:06 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-10-30 11:32:06 +0100 |
commit | 84dbccf8bea8d6bf7ac4258ab9fe54ce55650730 (patch) | |
tree | 4912f1255a7a9f01aa7aebd4ac41c08125377430 /install | |
parent | d23728eb7c32fe112a9154b0889d39f1c4a98ecd (diff) | |
download | myconfigs-84dbccf8bea8d6bf7ac4258ab9fe54ce55650730.tar.gz myconfigs-84dbccf8bea8d6bf7ac4258ab9fe54ce55650730.tar.bz2 myconfigs-84dbccf8bea8d6bf7ac4258ab9fe54ce55650730.zip |
Add list of installed packages on archlinux
Diffstat (limited to 'install')
-rwxr-xr-x | install | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,11 +6,17 @@ git submodule update --init || (echo "Submodule update failed! Use --ignore-sub # Source inst and diff function source utils/inst +source utils/arch # TODO if on archlinux install pkgstats and other packages we would need for every feature ################################################################################# source private/install # private files, sorry but some privacy is required. +read -p "Chek Archlinux system? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + archlinux_inst +fi + read -p "Install Bashrc? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst bashrc ~/.bashrc |