blob: 7da15a9666740d1f2c4e3dab0f552c1fb17f7ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
pkgs,
lib,
config,
...
}: let
cfg = config.collinux.terminal.terminalEmulators.blackbox;
in
lib.mkIf cfg.enable {
home.packages = [pkgs.blackbox-terminal];
dconf = {
enable = true;
settings = {
"com/raggesilver/BlackBox" = {
context-aware-header-bar = true;
fill-tabs = true;
notify-process-completion = true;
opacity = 100;
pixel-scrolling = true;
pretty = true;
show-scrollbars = false;
terminal-padding = "(10, 10, 10, 10)";
floating-controls = false;
show-headerbar = true;
};
};
};
}
|