about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/programs/bash/undistract-me.nix
blob: 587b649377df811ec68358a62f26214f02b8fc31 (plain) (blame)
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
31
32
33
34
35
36
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.programs.bash.undistractMe;
in
{
  options = {
    programs.bash.undistractMe = {
      enable = mkEnableOption (lib.mdDoc "notifications when long-running terminal commands complete");

      playSound = mkEnableOption (lib.mdDoc "notification sounds when long-running terminal commands complete");

      timeout = mkOption {
        default = 10;
        description = lib.mdDoc ''
          Number of seconds it would take for a command to be considered long-running.
        '';
        type = types.int;
      };
    };
  };

  config = mkIf cfg.enable {
    programs.bash.promptPluginInit = ''
      export LONG_RUNNING_COMMAND_TIMEOUT=${toString cfg.timeout}
      export UDM_PLAY_SOUND=${if cfg.playSound then "1" else "0"}
      . "${pkgs.undistract-me}/etc/profile.d/undistract-me.sh"
    '';
  };

  meta = {
    maintainers = with maintainers; [ kira-bruneau ];
  };
}