use default ctrl b in tmux

This commit is contained in:
Daniel Bauer
2026-03-05 09:13:37 +01:00
parent 9f54061331
commit 3179c0b2b9
2 changed files with 1 additions and 7 deletions

View File

@@ -11,12 +11,6 @@ set -g status-interval 2
# enable mouse
set-option -g mouse on
# remap keys
# prefix key: Ctrl+S
unbind C-b
set-option -g prefix C-s
bind-key C-s send-prefix
# split windows with | and ^
bind | split-window -h
unbind %

View File

@@ -6,7 +6,7 @@ echo "Installing packages"
echo "Updating sources..."
sudo apt update -qq
for package in xsel unzip git git-extras neovim git ripgrep; do
for package in zsh xsel unzip git git-extras neovim git ripgrep; do
if dpkg -s "$package" >/dev/null 2>&1; then
echo $package is already installed.
else