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'
|
echo 'Starting installation'
|
||||||
sudo dnf install -y \
|
echo 'Installing base packages'
|
||||||
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 'Switching shell to zsh'
|
set +e
|
||||||
chsh -s $(which zsh)
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
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 ~
|
cd ~
|
||||||
mkdir workspace
|
mkdir workspace
|
||||||
cd workspace
|
cd workspace
|
||||||
git clone https://git.doggoat.de/dhalucario/devconf.git
|
git clone https://git.doggoat.de/dhalucario/devconf.git
|
||||||
git submodule update --init --recusive
|
git submodule update --init --recusive
|
||||||
rm README.md.html
|
cd devconf
|
||||||
cp * ../
|
./install-light.sh
|
||||||
cp .* ../
|
|
||||||
|
echo 'Switching shell to zsh'
|
||||||
|
chsh -s $(which zsh)
|
||||||
|
|
||||||
vim +PlugInstall +qall
|
vim +PlugInstall +qall
|
||||||
|
|
Loading…
Reference in a new issue