setup now runs only as root

This commit is contained in:
zotan 2018-02-02 16:23:36 +01:00
parent 2a784de73f
commit 1a9569e6dc
2 changed files with 103 additions and 36 deletions

65
setup-old.sh Normal file
View File

@ -0,0 +1,65 @@
#!/bin/bash
cd
sudo eopkg up -y
sudo snap install spotify
sudo eopkg it -c system.devel -y
sudo eopkg it xrdb zsh git git-lfs telegram htop etcher golang zip unzip cava neofetch aria2 acpi ncmpcpp rxvt-unicode vim epson-inkjet-printer-escpr flatpak texlive-all solbuild pip discord -y
git lfs install
eopkg lr | grep solbuilds -q
if [[ $? -ne 1 ]]; then
sudo eopkg rr solbuilds
fi
sudo eopkg ar solus.sh https://repo.solus.sh/eopkg-index.xml.xz
sudo eopkg er solus.sh
sudo eopkg it chrome cli-visualizer dotnet-sdk geogebra insync jetbrains-toolbox libspotify libspotify-devel sublime-text-dev xarchiver -y
if [[ ! -f "/usr/bin/vis-real" ]]; then
sudo mv /usr/bin/vis /usr/bin/vis-real
sudo bash -c "echo '#!/bin/bash' > /usr/bin/vis"
sudo bash -c "echo 'xrdb -load ~/.Xresources' > /usr/bin/vis"
sudo bash -c "echo 'bash -c "urxvt -e ~/.vis.sh" &' > /usr/bin/vis"
echo '#!/bin/bash' > ~/.vis.sh
echo 'export TERM=rxvt-256color' > ~/.vis.sh
echo 'echo -e "\e]2;\a"' > ~/.vis.sh
echo 'vis-real' > ~/.vis.sh
fi
sudo solbuild update
if [[ $? == 1 ]]; then
sudo solbuild init
sudo solbuild update
fi
sudo pip install mopidy mopidy-spotify mopidy-spotify-web mopidy-iris
flatpak install --user --from https://download.mono-project.com/repo/monodevelop.flatpakref -y
if [[ ! -f ~/".dotfiles_installed" ]]; then
wget https://solus.sh/dotfiles.zip -O /tmp/dotfiles.zip
unzip -o /tmp/dotfiles.zip -d .
touch ~/".dotfiles_installed"
fi
bash -c "$(curl -fsSL solus.sh/solus-ohmyz.sh)"
cat .zshrc | grep transfer.sh -q
if [[ $? -ne 0 ]]; then
curl -fsSL https://gist.githubusercontent.com/anonymous/c2a9e0ea86b5fb9c7971182f461e33e4/raw/567a15b8491cb9106c53835c731e583d3b12d7b5/gistfile1.txt >> .zshrc
fi
cat .zshrc | grep "alias gst=" -q
if [[ $? -ne 0 ]]; then
printf "\n" >> .zshrc
echo "alias gst='git status'" >> .zshrc
echo "alias gad='git add'" >> .zshrc
echo "alias gcm='git commit'" >> .zshrc
echo "alias gcmm='git commit -m'" >> .zshrc
echo "alias gps='git push'" >> .zshrc
echo "alias gpl='git pull'" >> .zshrc
echo "alias grm='git rm'" >> .zshrc
fi

View File

@ -1,65 +1,67 @@
#!/bin/bash
if [[ $EUID -ne 0 ]] || [ -z ${SUDO_USER+x} ]; then
echo "This script must be run as sudo under your main user" 1>&2
exit 1
fi
cd
sudo eopkg up -y
eopkg up -y
sudo snap install spotify
sudo eopkg it -c system.devel -y
sudo eopkg it xrdb zsh git git-lfs telegram htop etcher golang zip unzip cava neofetch aria2 acpi ncmpcpp rxvt-unicode vim epson-inkjet-printer-escpr flatpak texlive-all solbuild pip discord -y
snap install spotify
eopkg it -c system.devel -y
eopkg it xrdb zsh git git-lfs telegram htop etcher golang zip unzip cava neofetch aria2 acpi ncmpcpp rxvt-unicode vim epson-inkjet-printer-escpr flatpak texlive-all solbuild pip discord -y
git lfs install
sudo -u $SUDO_USER git lfs install
eopkg lr | grep solbuilds -q
if [[ $? -ne 1 ]]; then
sudo eopkg rr solbuilds
eopkg rr solbuilds
fi
sudo eopkg ar solus.sh https://repo.solus.sh/eopkg-index.xml.xz
sudo eopkg er solus.sh
sudo eopkg it chrome cli-visualizer dotnet-sdk geogebra insync jetbrains-toolbox libspotify libspotify-devel sublime-text-dev xarchiver -y
eopkg ar solus.sh https://repo.solus.sh/eopkg-index.xml.xz
eopkg er solus.sh
eopkg it chrome cli-visualizer dotnet-sdk geogebra insync jetbrains-toolbox libspotify libspotify-devel sublime-text-dev xarchiver -y
if [[ ! -f "/usr/bin/vis-real" ]]; then
sudo mv /usr/bin/vis /usr/bin/vis-real
sudo bash -c "echo '#!/bin/bash' > /usr/bin/vis"
sudo bash -c "echo 'xrdb -load ~/.Xresources' > /usr/bin/vis"
sudo bash -c "echo 'bash -c "urxvt -e ~/.vis.sh" &' > /usr/bin/vis"
echo '#!/bin/bash' > ~/.vis.sh
echo 'export TERM=rxvt-256color' > ~/.vis.sh
echo 'echo -e "\e]2;\a"' > ~/.vis.sh
echo 'vis-real' > ~/.vis.sh
mv /usr/bin/vis /usr/bin/vis-real
echo '#!/bin/bash' > /usr/bin/vis
echo 'xrdb -load ~/.Xresources' >> /usr/bin/vis
echo 'bash -c "urxvt -e ~/.vis.sh" &' >> /usr/bin/vis
fi
sudo solbuild update
if [[ $? == 1 ]]; then
sudo solbuild init
sudo solbuild update
solbuild init
solbuild update
else
solbuild update
fi
sudo pip install mopidy mopidy-spotify mopidy-spotify-web mopidy-iris
pip install mopidy mopidy-spotify mopidy-spotify-web mopidy-iris
flatpak install --user --from https://download.mono-project.com/repo/monodevelop.flatpakref -y
sudo -u $SUDO_USER flatpak install --user --from https://download.mono-project.com/repo/monodevelop.flatpakref -y
if [[ ! -f ~/".dotfiles_installed" ]]; then
if [[ ! -f /home/$SUDO_USER/".dotfiles_installed" ]]; then
wget https://solus.sh/dotfiles.zip -O /tmp/dotfiles.zip
unzip -o /tmp/dotfiles.zip -d .
touch ~/".dotfiles_installed"
unzip -o /tmp/dotfiles.zip -d /home/$SUDO_USER/
touch /home/$SUDO_USER/".dotfiles_installed"
fi
bash -c "$(curl -fsSL solus.sh/solus-ohmyz.sh)"
sudo -u $SUDO_USER bash -c "$(curl -fsSL solus.sh/solus-ohmyz.sh)"
cat .zshrc | grep transfer.sh -q
cat /home/$SUDO_USER/.zshrc | grep transfer.sh -q
if [[ $? -ne 0 ]]; then
curl -fsSL https://gist.githubusercontent.com/anonymous/c2a9e0ea86b5fb9c7971182f461e33e4/raw/567a15b8491cb9106c53835c731e583d3b12d7b5/gistfile1.txt >> .zshrc
curl -fsSL https://gist.githubusercontent.com/anonymous/c2a9e0ea86b5fb9c7971182f461e33e4/raw/567a15b8491cb9106c53835c731e583d3b12d7b5/gistfile1.txt >> /home/$SUDO_USER/.zshrc
fi
cat .zshrc | grep "alias gst=" -q
cat /home/$SUDO_USER/.zshrc | grep "alias gst=" -q
if [[ $? -ne 0 ]]; then
printf "\n" >> .zshrc
echo "alias gst='git status'" >> .zshrc
echo "alias gad='git add'" >> .zshrc
echo "alias gcm='git commit'" >> .zshrc
echo "alias gcmm='git commit -m'" >> .zshrc
echo "alias gps='git push'" >> .zshrc
echo "alias gpl='git pull'" >> .zshrc
echo "alias grm='git rm'" >> .zshrc
echo "alias gst='git status'" >> /home/$SUDO_USER/.zshrc
echo "alias gad='git add'" >> /home/$SUDO_USER/.zshrc
echo "alias gcm='git commit'" >> /home/$SUDO_USER/.zshrc
echo "alias gcmm='git commit -m'" >> /home/$SUDO_USER/.zshrc
echo "alias gps='git push'" >> /home/$SUDO_USER/.zshrc
echo "alias gpl='git pull'" >> /home/$SUDO_USER/.zshrc
echo "alias grm='git rm'" >> /home/$SUDO_USER/.zshrc
fi