add data compression and decompression

This commit is contained in:
Theo Tappe
2026-06-14 16:52:07 +00:00
parent 7478d050e3
commit 75d5f91c6a
14 changed files with 189 additions and 94 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
SESSION="fastSync"
tmux has-session -t $SESSION 2>/dev/null
if [ $? != 0 ]; then
tmux new-session -d -s $SESSION -n "Neovim"
tmux send-keys -t $SESSION:0 'nvim .' C-m
tmux new-window -t $SESSION -n "Console"
tmux send-keys -t $SESSION:1 'cd ./build' C-m
tmux split-window -h -t $SESSION:1
tmux send-keys -t $SESSION:1.1 'cd ./build' C-m
tmux select-window -t $SESSION:0
fi
tmux attach-session -t $SESSION