This commit is contained in:
Thomas Sindt
2026-06-03 08:11:19 +02:00
commit 03e01ec9ce
102 changed files with 409 additions and 0 deletions

30
tmux.conf Normal file
View File

@@ -0,0 +1,30 @@
# statusbar
set -g status-position top
set -g status-style bg=green
set -g window-active-style bg=blue
set -g pane-active-border fg=yellow
# battery
set-window-option -g status-right "#(acpi -b | grep -m1 -o -P '.{0,2}%') %Y-%m-%d %H:%M "
# light
bind -n F5 run-shell 'light -U 10'
bind -n F6 run-shell 'light -A 10'
bind | split-window -h
bind - split-window -v
bind r source-file ~/.tmux.conf
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g mouse on