From 29e7a76b102f27fe3017887c8936665ba9932d98 Mon Sep 17 00:00:00 2001 From: Andrew DeFaria Date: Mon, 19 Sep 2022 16:59:47 -0700 Subject: [PATCH] Fixed bug where history did not have newline --- bin/setbg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setbg b/bin/setbg index ffcefda..8de93c6 100755 --- a/bin/setbg +++ b/bin/setbg @@ -157,7 +157,7 @@ sub writeHistory($msg) { $msg = localtime() . $msg; - print $hist $msg; + print $hist "$msg\n"; close $hist; } # writeHistory -- 2.17.1