From 06e86fc7f2e223c75388a7bf9a37894ffa24e700 Mon Sep 17 00:00:00 2001 From: Bailey Stevens Date: Tue, 7 May 2024 00:49:50 -0400 Subject: [PATCH] Removes broken fish exit handler. --- modules/home/core/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/home/core/default.nix b/modules/home/core/default.nix index 1e674c0..e95b723 100644 --- a/modules/home/core/default.nix +++ b/modules/home/core/default.nix @@ -134,14 +134,6 @@ in enable = true; functions = { fish_greeting = "echo ~~ Hi ~$USER! Welcome to $hostname. ~~"; - __fish_exit_handler = { - onEvent = "fish_exit"; - body = '' - echo - set_color -i; string pad -w$COLUMNS "So long Space Cowgirl..."; set_color normal; - sleep 1 - ''; - }; __fish_command_not_found_handler = { body = "__fish_default_command_not_found_handler $argv[1]"; onEvent = "fish_command_not_found";