Compare commits

...

2 Commits

Author SHA1 Message Date
21ed23a8df Transparent status bar in tmux 2024-06-04 16:31:29 +02:00
4033e50734 Fix bindings for alacritty 2024-06-04 16:31:23 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ let
tmux-binds = [
{ key = ''Period''; mods = ''Control''; chars = ''\u001D''; } # tmux escape
{ key = ''Period''; mods = ''Shift|Command''; chars = ''\u001D:''; }
{ key = ''Colon''; mods = ''Shift|Command''; chars = ''\u001D:''; }
{ key = ''Key0''; mods = ''Command''; chars = ''\u001D0''; }
{ key = ''Key1''; mods = ''Command''; chars = ''\u001D1''; }
{ key = ''Key2''; mods = ''Command''; chars = ''\u001D2''; }
@ -24,6 +24,7 @@ let
{ key = ''R''; mods = ''Command''; chars = ''\u001D$''; }
{ key = ''W''; mods = ''Shift|Command''; chars = ''\u001D&''; } # kill window
{ key = ''W''; mods = ''Command''; chars = ''\u001Dx''; } # kill pane
{ key = ''Å''; mods = ''Command''; chars = ''\u001Dd''; } # detach (Å is qwerty Q)
{ key = ''Left''; mods = ''Command''; chars = ''\u001Dp''; }
{ key = ''Right''; mods = ''Command''; chars = ''\u001Dn''; }
@ -32,7 +33,6 @@ let
{ key = ''Left''; mods = ''Shift|Command''; chars = ''\u001D\u001b[D''; }
{ key = ''O''; mods = ''Command''; chars = ''\u001Dw''; } # ''open'', open a window
{ key = ''A''; mods = ''Command''; chars = ''\u001D;''; } # Last pane
];

View File

@ -141,8 +141,8 @@ in rec {
# Status bar options
set-option -g status on
set-option -g status-bg colour235
set-option -g status-fg "#FFC757"
set-option -g status-style bg=default
set-option -g status-style fg="#FFC757"
set-option -g status-interval 2
set-option -g status-justify "centre"