Browse Source

Group installation scripts by utility

Instead of regrouping them by tools.

Tweak some copies as well with --update and --link argument.
DricomDragon 5 years ago
parent
commit
85635d0398

+ 11 - 43
Install/README.md

@@ -2,58 +2,26 @@
 
 ## Core installation
 
-execute `deep-upgrade`
+Execute `deep-upgrade`, `basic-install` and `basic-custom` before any tweak.
 
-execute `fish-install`
+## Tweaks
 
-execute `basic-install`
+### Extra installation
 
-execute `vim-custom`
+Scripts are named `<component>-<task>` where `<component>` is the part to be tweaked and `<task>` the purpose of the script, which can be _install_ to install software of this part and _custom_ to configure them as Jovian does.
 
-execute `git-custom`
+Installation must be made before customization.
 
-execute `sshd-install`
+### Fish prompt
 
-execute `sshd-custom`
+Execute command `set fish_color_user yellow`.
 
-execute command `ssh-keygen`
+Execute command `set fish_color_host blue|red|yellow|magenta` depending of the power regulation.
 
-manually install your key in servers
+### Hostname
 
-execute `git-script-install`
+Change hostname with `sudoedit /etc/hostname`
 
-execute `fish-custom`
-
-execute command `set fish_color_user yellow`
-
-execute command `set fish_color_host blue|red|yellow|magenta` depending of the power regulation
-
-execute `screen-custom`
-
-## Laptop
-
-execute `laptop-install`
-
-execute `lap-screen-custom`
-
-change hostname with `sudoedit /etc/hostname`
-
-## Raspberry Pi
-
-execute `localtime_set`
-
-## UI installation
-
-execute `ui-install`
-
-execute `i3-install`
-
-execute `dvp-install`
-
-manually sync with firefox
-
-manually set up your desktop
-
-## Ubuntu
+### Ubuntu repository
 
 You can use the `sources.list` in _Templates_ to set France OVH mirror.

+ 0 - 4
Install/ala-custom

@@ -1,4 +0,0 @@
-#!/usr/bin/fish
-
-mkdir --parents $HOME/.config/alacritty
-cp --link --update Templates/alacritty/alacritty.yml $HOME/.config/alacritty/

+ 0 - 5
Install/ala-install

@@ -1,5 +0,0 @@
-#!/usr/bin/fish
-# Install alacritty on Ubuntu
-
-sudo add-apt-repository ppa:mmstick76/alacritty
-sudo apt install alacritty

+ 5 - 0
Install/fish-custom

@@ -1,5 +1,10 @@
 #!/usr/bin/fish
 
+# Customize screen
+
+## Customize pluged in device
+cp --update --link Templates/screenrc ~/.screenrc
+
 # Install fish customization
 mkdir --parents ~/.config/fish
 cp --recursive --update --link ./Templates/fish/* ~/.config/fish/

+ 6 - 3
Install/basic-install

@@ -1,7 +1,10 @@
 #!/usr/bin/fish
 
-# Run this programm in jovian shell
+# Install basic programms
+sudo apt install htop screen w3m tree
 
-# Basic programms
-sudo apt install htop screen w3m tree etherwake git vim ;
+# Install fish shell
+sudo apt install fish
+sudo chsh -s /usr/bin/fish # change shell for superuser
+chsh -s /usr/bin/fish # change my shell
 

+ 22 - 0
Install/dev-custom

@@ -0,0 +1,22 @@
+#!/usr/bin/fish
+
+# Customize vim configuration
+cp --update --link ./Templates/vimrc ~/.vimrc
+
+# Set bat color theme
+set --export --universal BAT_THEME GitHub
+
+# Configure git
+git config --global user.email "dev@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
+git config --global core.excludesfile '~/.gitignore'
+
+# Copy global gitignore
+cp --update --link ./Templates/gitignore ~/.gitignore
+
+# Create GitWork
+mkdir --parents ~/GitWork/DricomDragon ~/GitWork/CNI ~/GitWork/TestOrg ~/GitWork/BotFactory
+

+ 5 - 0
Install/dev-install

@@ -0,0 +1,5 @@
+#!/usr/bin/fish
+
+# Programs for software development
+sudo apt install git vim bat
+

+ 0 - 8
Install/fish-install

@@ -1,8 +0,0 @@
-#!/bin/bash
-
-# Install fish
-
-sudo apt install fish
-sudo chsh -s /usr/bin/fish # change shell for superuser
-chsh -s /usr/bin/fish # change my shell
-

+ 0 - 19
Install/git-custom

@@ -1,19 +0,0 @@
-#!/usr/bin/fish
-
-# Run this programm in jovian shell
-
-# Configure 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
-git config --global core.excludesfile '~/.gitignore'
-
-# Copy global gitignore
-cp ./Templates/gitignore ~/.gitignore
-
-# Create GitWork
-mkdir ~/GitWork ;
-mkdir ~/GitWork/DricomDragon ~/GitWork/CNI ~/GitWork/TestOrg ~/GitWork/BotFactory ;
-

+ 0 - 7
Install/i3-custom

@@ -1,7 +0,0 @@
-#!/usr/bin/fish
-
-# Install i3 config
-# You must have installed the i3 package before
-
-mkdir --parents ~/.config/i3
-cp --update --link ./Templates/i3/config ~/.config/i3/

+ 3 - 3
Install/keyboard-custom

@@ -3,8 +3,8 @@
 # Install programming dvorak keyboard in terminal
 ## !!! CHECK YOUR XKMODEL !!!
 ## Set programming dvorak layout everywhere
-sudo cp Templates/keyboard /etc/default/keyboard
+sudo cp --update Templates/keyboard /etc/default/keyboard
 
 # Install programming dvorak keyboard in X11
-sudo mkdir -p /etc/X11/xorg.conf.d/
-sudo cp Templates/10-keyboard.conf /etc/X11/xorg.conf.d/
+sudo mkdir --parents /etc/X11/xorg.conf.d/
+sudo cp --update Templates/10-keyboard.conf /etc/X11/xorg.conf.d/

Install/lap-screen-custom → Install/laptop-custom


+ 1 - 1
Install/localtime_set

@@ -1,6 +1,6 @@
 #!/usr/bin/fish
 
 # Set the local time of Paris
-## Useful for adjust a non GUI installation
+## Useful for adjust a non GUI installation like a Raspberry Pi
 
 sudo cp /usr/share/zoneinfo/Europe/Paris /etc/localtime

+ 0 - 7
Install/screen-custom

@@ -1,7 +0,0 @@
-#!/usr/bin/fish
-
-# Customize screen
-
-## Customize pluged in device
-cp Templates/screenrc ~/.screenrc
-

+ 8 - 0
Install/server-custom

@@ -0,0 +1,8 @@
+#!/usr/bin/fish
+
+# SSH
+
+## Config server
+sudo cp --update ./Templates/sshd_config /etc/ssh/
+cp --update ./Templates/authorized_keys /home/jovian/.ssh/
+

+ 15 - 0
Install/server-install

@@ -0,0 +1,15 @@
+#!/usr/bin/fish
+
+# Install server utilities
+sudo apt install etherwake
+
+# Install ssh server
+
+## SSH
+### Install server
+sudo apt install openssh-server
+
+### Auto start ssh
+sudo systemctl enable ssh
+sudo service ssh restart
+

+ 0 - 8
Install/sshd-custom

@@ -1,8 +0,0 @@
-#!/usr/bin/fish
-
-# SSH
-
-## Config server
-sudo cp ./Templates/sshd_config /etc/ssh/ ;
-cp ./Templates/authorized_keys /home/jovian/.ssh/ ;
-

+ 0 - 12
Install/sshd-install

@@ -1,12 +0,0 @@
-#!/usr/bin/fish
-
-# Install ssh server
-
-# SSH
-## Install server
-sudo apt install openssh-server ;
-
-## Auto start ssh
-sudo systemctl enable ssh ;
-sudo service ssh restart ;
-

+ 13 - 0
Install/ui-custom

@@ -0,0 +1,13 @@
+#!/usr/bin/fish
+
+# Install i3 config
+# You must have installed the i3 package before
+mkdir --parents ~/.config/i3
+cp --update --link ./Templates/i3/config ~/.config/i3/
+
+# Customize alacritty configuration
+mkdir --parents $HOME/.config/alacritty
+cp --link --update Templates/alacritty/alacritty.yml $HOME/.config/alacritty/
+
+# Set default app for Mime-type
+xdg-mime default atril.desktop application/pdf

+ 4 - 3
Install/ui-install

@@ -4,7 +4,8 @@
 
 ## Windows manager
 ## Install config with another script
-sudo apt install i3 atril;
+sudo apt install i3 atril
 
-## Set default app for Mime-type
-xdg-mime default atril.desktop application/pdf
+# Install alacritty on Ubuntu
+sudo add-apt-repository ppa:mmstick76/alacritty
+sudo apt install alacritty

+ 0 - 3
Install/vim-custom

@@ -1,3 +0,0 @@
-#!/usr/bin/fish
-
-cp --update --link ./Templates/vimrc ~/.vimrc