tmux installed
Copy .tmux.conf
to your Home directory
ressource : https://www.ricalo.com/blog/install-powerline-windows/#install-and-configure-powerline-fonts
Copy .tmux.conf_wsl
and rename it to .tmux.conf
powershell -command "& { iwr https://github.com/powerline/fonts/archive/master.zip -OutFile ~\fonts.zip }"
Expand-Archive -Path ~\fonts.zip -DestinationPath ~
~\fonts-master\install.ps1
sudo add-apt-repository universe
sudo apt install --yes powerline
#===================================
# Tmux pan
<br>
start_tmux() {
tmux new-session -s "mySession_$(date +%s)" -d
tmux split-window -h
tmux split-window -v
tmux -2 attach-session -d
}
alias tmux="start_tmux"