mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
disable long running command notifications
This commit is contained in:
parent
61f26315d5
commit
b5790a2795
@ -1,4 +1,4 @@
|
||||
{ config, lib, ... }: {
|
||||
{ config, pkgs, lib, ... }: {
|
||||
|
||||
home-manager.users.${config.user}.programs.starship = {
|
||||
enable = true;
|
||||
@ -21,7 +21,7 @@
|
||||
};
|
||||
cmd_duration = {
|
||||
min_time = 5000;
|
||||
show_notifications = true;
|
||||
show_notifications = if pkgs.stdenv.isLinux then false else true;
|
||||
min_time_to_notify = 30000;
|
||||
format = "[$duration]($style) ";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user