Compare commits

..

2 commits

Author SHA1 Message Date
63ac881eea zellij: more configuration 2025-05-22 22:09:33 +02:00
7d2dfbed5c hinata: add bluetooth 2025-05-22 21:33:23 +02:00
3 changed files with 48 additions and 21 deletions

View file

@ -91,6 +91,23 @@ in
});
};
# Support bluetooth.
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
settings = {
General = {
# Support A2DP.
Enable = "Source,Sink,Media,Socket";
# Enable experimental featurees, like reading device battery levels.
Experimental = true;
};
};
};
#
# Hardware config.

View file

@ -6,6 +6,12 @@ keybinds clear-defaults=true {
locked {
bind "`" { SwitchToMode "normal"; }
}
normal {
bind "`" {
WriteChars "`";
SwitchToMode "locked";
}
}
pane {
bind "left" { MoveFocus "left"; }
bind "down" { MoveFocus "down"; }
@ -160,10 +166,6 @@ keybinds clear-defaults=true {
bind "Alt o" { MoveTab "right"; }
}
shared_except "locked" "renametab" "renamepane" {
bind "`" {
WriteChars "`";
SwitchToMode "locked";
}
bind "Ctrl q" { Quit; }
}
shared_except "locked" "entersearch" {
@ -186,6 +188,14 @@ keybinds clear-defaults=true {
}
shared_among "normal" "resize" "tab" "scroll" "prompt" "tmux" {
bind "p" { SwitchToMode "pane"; }
bind "/" {
LaunchOrFocusPlugin "file:~/.config/zellij/plugins/zellij_forgot.wasm" {
floating true
}
}
}
shared_except "normal" "locked" {
bind "`" { SwitchToMode "locked"; }
}
shared_except "locked" "resize" "pane" "tab" "entersearch" "renametab" "renamepane" {
bind "r" { SwitchToMode "resize"; }

Binary file not shown.