#!/bin/bash
# - bof - #



<<'comment'
# - Configured - #


rm -rf ~/.bashrc;
vim ~/.bashrc;

rm -rf ~/.zshrc;
vim ~/.zshrc;


ssh-keygen -R 192.168.1.1

# - On client - #
cd ~/.ssh;
ssh-keygen -t rsa;

cat ~/.ssh/id_rsa.pub;

# - On server - #
vim ~/.ssh/authorized_keys;

sudo apt install curl git htop inxi net-tools ntp neovim tree -y;

comment





# :a
# -  - #
# - Kitty themes installation - #
https://www.youtube.com/watch?v=H_1iVYzzbyQ


# :a.1
# -  - #
# - Kitty themes Documentation - #
https://github.com/dexpota/kitty-themes
https://github.com/dexpota/kitty-themes?tab=readme-ov-file#installation


# :a.2
# -  - #
# - Install Kitty themes - #
sudo pacman -S kitty --noconfirm --needed;
git clone --depth 1 https://github.com/dexpota/kitty-themes.git ~/.config/kitty/kitty-themes


# :a.3
# -  - #
# - Choose a theme & create a symlink  - #

vim ~/.config/kitty/kitty.conf;
include ./kitty-themes/themes/Cobalt2.conf
include ./kitty-themes/themes/Atom.conf
include ./kitty-themes/themes/Darkside.conf



ls -lah ~/.config/kitty/kitty-themes/themes;

cd ~/.config/kitty;
ln -s ./kitty-themes/themes/Floraverse.conf ~/.config/kitty/theme.conf



# :a.4
# -  - #
# - Keybindig  - #
https://cheatography.com/spegge/cheat-sheets/kitty-terminal/


Ctrl+Shift+Enter  New window child (split)
Ctrl+Shift+w      Close window

Ctrl+Shift+t      New tab
Ctrl+Shift+q      Close tab
Ctrl+Shift+ <- -> Goto tab

Ctrl+Shift+ L     Next windows layout 
                  (Organize/change windows layout)

Ctrl+Shift+n      New window
Ctrl+Shift+w      Close window

Ctrl+Shift+b      Move window backward
Ctrl+Shift+f      Move window forward

Ctrl+Shift+[      Move into splitted windows
Ctrl+Shift+]      Move into splitted windows

Ctrl+Shift+1      Goto window 1
Ctrl+Shift+2      Goto window 2
Ctrl+Shift+5      Goto window 5










 

# - eof - #