Add and move stuff install script
This commit is contained in:
parent
ae65165402
commit
8a1d65be14
1 changed files with 19 additions and 12 deletions
31
install.sh
31
install.sh
|
@ -1,21 +1,28 @@
|
|||
echo 'Starting installation'
|
||||
sudo dnf install -y \
|
||||
git zsh vim-enhanced tig \
|
||||
guake gvim firefox thunderbird keepassxc filezilla telegram-desktop nextcloud-client libreoffice lpf-spotify-client teamviewer flameshot \
|
||||
poedit pavucontrol ibus-uniemoji xsel apache-ant dex-autostart mpv xt7-player-mpv \
|
||||
docker-ce docker-compose \
|
||||
php-cli php-json php-mysqli php-zip php-xml php-mbstring php-xdebug mysql wp-cli java
|
||||
echo 'Installing base packages'
|
||||
|
||||
echo 'Switching shell to zsh'
|
||||
chsh -s $(which zsh)
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
set +e
|
||||
|
||||
sudo dnf install -y \
|
||||
git which util-linux-user zsh vim-enhanced \
|
||||
tig guake gvim firefox thunderbird keepassxc filezilla telegram-desktop nextcloud-client libreoffice lpf-spotify-client teamviewer \
|
||||
pavucontrol flameshot ibus-uniemoji xsel dex-autostart mpv xt7-player-mpv \
|
||||
php-cli php-json php-mysqli php-zip php-xml php-mbstring php-xdebug mysql wp-cli composer java \
|
||||
docker-ce docker-compose \
|
||||
|
||||
#echo 'Install work packages'
|
||||
#sudo dnf install -y \
|
||||
# apache-ant pedit \
|
||||
|
||||
cd ~
|
||||
mkdir workspace
|
||||
cd workspace
|
||||
git clone https://git.doggoat.de/dhalucario/devconf.git
|
||||
git submodule update --init --recusive
|
||||
rm README.md.html
|
||||
cp * ../
|
||||
cp .* ../
|
||||
cd devconf
|
||||
./install-light.sh
|
||||
|
||||
echo 'Switching shell to zsh'
|
||||
chsh -s $(which zsh)
|
||||
|
||||
vim +PlugInstall +qall
|
||||
|
|
Loading…
Reference in a new issue