From 1936de783f172335c0705bfee3116b050057723c Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 4 Jan 2016 20:55:25 +0100 Subject: [PATCH] Color for the "init success" message --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 0e2ebc5..470a767 100644 --- a/main.go +++ b/main.go @@ -72,7 +72,9 @@ func initDir(args *argContainer) { } } - cryptfs.Info.Printf("The filesystem is now ready for mounting.\n") + cryptfs.Info.Printf(colorGreen+"The filesystem has been created successfully.\n"+colorReset) + cryptfs.Info.Printf(colorGrey+"You can now mount it using: %s %s MOUNTPOINT\n"+colorReset, + PROGRAM_NAME, args.cipherdir) os.Exit(0) }