From d29cb12bcffccde459da6db9ddd777ffadd4ea72 Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Sat, 9 Apr 2022 22:11:45 +0300 Subject: [PATCH] bold --- shells/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shells/default.nix b/shells/default.nix index c8ce569..95e1528 100644 --- a/shells/default.nix +++ b/shells/default.nix @@ -4,6 +4,6 @@ lib.genPkgs (pkgs: { mkShell { name = "prts"; buildInputs = [git git-crypt]; - shellHook = "echo welcome to PRTS, $USER"; + shellHook = "echo \"$(tput bold)welcome to PRTS, $USER$(tput sgr0)\""; }; })