12345678910111213141516171819 |
- #!/usr/bin/fish
- # Run this programm in jovian shell
- # Basic programms
- sudo apt install htop screen w3m tree etherwake vim ;
- # Install git
- sudo apt install git ;
- git config --global user.email "contact@jovian-hersemeule.eu" ;
- git config --global user.name "DricomDragon" ;
- git config --global core.editor "vim" ;
- git config --global push.followTags true
- git config --global diff.tool vimdiff
- # Create GitWork
- mkdir /home/jovian/GitWork ;
- mkdir /home/jovian/GitWork/Centrale /home/jovian/GitWork/Games /home/jovian/GitWork/Linux /home/jovian/GitWork/Web ;
|