Browse Source

Split scripts between install and custom purposes

Install in order to install new packages.

Custom to update configuration files and/or scripts from repository.
DricomDragon 5 years ago
parent
commit
2c6d08338d

+ 20 - 6
Install/README.md

@@ -6,21 +6,35 @@ execute `deep-upgrade`
 
 execute `fish-install`
 
-execute `vim-install`
-
 execute `basic-install`
 
-execute `server-install`
+execute `vim-custom`
+
+execute `git-custom`
+
+execute `sshd-install`
 
-execute `ssh-keygen`
+execute `sshd-custom`
 
-manually install your key in jupyter
+execute command `ssh-keygen`
+
+manually install your key in servers
 
 execute `git-script-install`
 
 execute `fish-custom`
 
-execute `screen-install`
+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`
 
 ## Raspberry Pi
 

+ 1 - 0
Install/Templates/htop_screenrc

@@ -1,6 +1,7 @@
 # GNU Screen - main configuration file 
 # All other .screenrc files will source this file to inherit settings.
 # Author: Christian Wills - cwills.sys@gmail.com
+# Modified by Jovian Hersemeule to launche htop on many ssh hosts at once
 
 # Allow bold colors - necessary for some reason
 attrcolor b ".I"

+ 36 - 0
Install/Templates/laptop-screenrc

@@ -0,0 +1,36 @@
+# GNU Screen - main configuration file 
+# All other .screenrc files will source this file to inherit settings.
+# Author: Christian Wills - cwills.sys@gmail.com
+
+# Allow bold colors - necessary for some reason
+attrcolor b ".I"
+
+# Tell screen how to set colors. AB = background, AF=foreground
+termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
+
+# Enables use of shift-PgUp and shift-PgDn
+termcapinfo xterm|xterms|xs|rxvt ti@:te@
+
+# Erase background with current bg color
+defbce "on"
+
+# Enable 256 color term
+term xterm-256color
+
+# Cache 30000 lines for scroll back
+defscrollback 30000
+
+# Energy information
+backtick 101 30 15 /usr/bin/acpi
+
+hardstatus alwayslastline 
+# Very nice tabbed colored hardstatus line
+hardstatus string '%{= Kd} %{= Kd}%-w%{= Kr}[%{= KW}%n %t%{= Kr}]%{= Kd}%+w %-= %{KG} %H%{KW}|%{KY}%101`%{KW}|%D %M %d %Y%{= Kc} %C%A%{-}'
+
+# change command character from ctrl-a to ctrl-b (emacs users may want this)
+escape ^Hh
+
+# Hide hardstatus: ctrl-a f 
+bind f eval "hardstatus ignore"
+# Show hardstatus: ctrl-a F
+bind F eval "hardstatus alwayslastline"

+ 2 - 2
Install/Templates/screenrc

@@ -20,8 +20,8 @@ term xterm-256color
 # Cache 30000 lines for scroll back
 defscrollback 30000
 
-# New mail notification
-backtick 101 30 15 /usr/bin/acpi
+# Energy information
+backtick 101 30 15 echo "220V"
 
 hardstatus alwayslastline 
 # Very nice tabbed colored hardstatus line

+ 1 - 13
Install/basic-install

@@ -3,17 +3,5 @@
 # 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 ;
+sudo apt install htop screen w3m tree etherwake git vim ;
 

+ 0 - 0
Install/deep-upgrade


+ 0 - 0
Install/fish-custom


+ 1 - 0
Install/fish-install

@@ -4,4 +4,5 @@
 
 sudo apt install fish
 sudo chsh -s /usr/bin/fish
+chsh -s /usr/bin/fish
 

+ 15 - 0
Install/git-custom

@@ -0,0 +1,15 @@
+#!/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
+
+# Create GitWork
+mkdir ~/GitWork ;
+mkdir ~/GitWork/DricomDragon ~/GitWork/CNI ~/GitWork/TestOrg ~/GitWork/BotFactory ;
+

+ 7 - 0
Install/lap-screen-custom

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

+ 7 - 0
Install/laptop-install

@@ -0,0 +1,7 @@
+#!/usr/bin/fish
+
+# Install and customize laptop utilities
+
+## Install (APCI can check the battery level)
+sudo apt install screen acpi
+

+ 7 - 0
Install/screen-custom

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

+ 0 - 10
Install/screen-install

@@ -1,10 +0,0 @@
-#!/bin/usr/fish
-
-# Install and customize screen
-
-## Install (APCI can check the battery level)
-sudo apt install screen acpi
-
-## Customize
-cp Templates/screenrc ~/.screenrc
-

+ 8 - 0
Install/sshd-custom

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

+ 1 - 5
Install/server-install

@@ -1,15 +1,11 @@
 #!/usr/bin/fish
 
-# Install server stuff
+# Install ssh server
 
 # SSH
 ## Install server
 sudo apt install openssh-server ;
 
-## Config server
-sudo cp ./Templates/sshd_config /etc/ssh/ ;
-cp ./Templates/authorized_keys /home/jovian/.ssh/ ;
-
 ## Auto start ssh
 sudo systemctl enable ssh ;
 sudo service ssh restart ;

+ 1 - 1
Install/vim-install

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