Add notes and deploy script

This commit is contained in:
2026-03-30 16:59:53 +02:00
parent 601ead1fd9
commit 94817f8cc0
33 changed files with 943 additions and 650 deletions

38
content/notes/Tmux.md Normal file
View File

@@ -0,0 +1,38 @@
---
tags:
- General
title : Tmux
description : Notes
date : 2025-01-01
author : Nikola Petrov
draft : true
---
https://www.geeksforgeeks.org/tmux-in-linux/
|Key|Description|
|---|---|
|Ctrl+B D|It will detach from the current session.|
|Ctrl+B %|It will split the window into two panes horizontally.|
|Ctrl+B "|It will split the window into two panes vertically.|
|Ctrl+B Arrow Key (Left, Right, Up, Down)|It helps in moving between panes.|
|Ctrl+B N or P|It helps in switching the next or previous window.|
|Ctrl+B C|It will create a new window.|
|Ctrl+B X|It will close the pane|
|Ctrl+B 0 (1,2...)|It will move to the particular window by number.|
|Ctrl+B :|Enter the command line to type commands.|
|Ctrl+B ?|It will display all key bindings.|
|Ctrl+B W|It opens a panel to navigate across windows in multiple sessions.|
```
tmux ls
->
0: 1 windows (created Wed Mar 5 23:03:01 2025)
```
```
tmux a
```