You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
603 B
Bash

#!/usr/bin/env
echo "Setting keyboard to bepo (shift-left+shift-right to go back to azerty"
echo 'setxkbmap -layout "fr,fr" -variant bepo, -option "grp:shifts_toggle"' >> /home/etu/.bashrc
. /home/etu/.bashrc
echo "Installing some usefull softwares"
sudo apt install ripgrep exa git vim byobu vim-syntastic -y
echo "Cloning git repository"
git clone https://git.flavien.ovh/louis_royer/tp --depth 1
echo "Installing .vimrc for root"
sudo cp tp/vim/vimrc /root/.vimrc
sudo cp tp/vim/vimrc.bepo /root/.vimrc.bepo
sudo chown root:root /root/.vimrc*
echo "End for installation, lets begin your work!"