edit: setup-solus.sh

This commit is contained in:
ZotanWolf 2018-01-30 16:55:51 +01:00
parent 96b8b4b265
commit e813b00d39

View file

@ -7,9 +7,11 @@ 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 -y
sudo ln -s /usr/bin/telegram /usr/bin/telegram-desktop
sudo ln -s /usr/bin/telegram /usr/bin/telegram-desktop &> /dev/null
sudo eopkg it https://github.com/ZotanWolf/solbuilds/raw/master/chrome/chrome-64.0.3282.119-1-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/cli-visualizer/cli-visualizer-1.7-1-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/dotnet/dotnet-sdk-1.2.4-1-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/geogebra/geogebra-5.0.24-1-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/insync/insync-1.3.22-36179-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/jetbrains-toolbox/jetbrains-toolbox-1.6.2914-1-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/libspotify/libspotify-devel-12.1.51-3-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/libspotify/libspotify-12.1.51-3-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/sublime/sublime-text-dev-3-3143-1-x86_64.eopkg https://github.com/ZotanWolf/solbuilds/raw/master/xarchiver/xarchiver-0.5.4-1-1-x86_64.eopkg
sudo eopkg ar solbuilds https://github.com/ZotanWolf/solbuilds/raw/master/repo/eopkg-index.xml.xz
sudo eopkg er solbuilds
sudo eopkg it chrome cli-visualizer dotnet-sdk geogebra insync jetbrains-toolbox libspotify libspotify-devel sublime-text-dev xarchiver -y
sudo solbuild update
if [[ $? == 1 ]]; then
@ -31,3 +33,15 @@ 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