aboutsummaryrefslogtreecommitdiff
path: root/modules/desktop/home/programs/blackbox.nix
blob: c2d95207e14dc487028e83e43b094c518f60ce39 (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.desktop.programs.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;
        };
      };
    };
  }