From 89fa02749c07a038512b0eec588f6f40e0d0a1f4 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 15 Feb 2020 16:15:02 +0100 Subject: [PATCH] Alacritty processor remove temporary files Remember to remove any temporary files at the end of processing. --- theme_alacritty | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theme_alacritty b/theme_alacritty index d317538..c8abc0c 100755 --- a/theme_alacritty +++ b/theme_alacritty @@ -106,6 +106,8 @@ save() { # replace original file with new colorscheme-added version cat "$tmptheme" "$tmpfile" >"$alacritty_conf" + rm "$tmptheme" "$tmpfile" + dbg_msg $app "Saved theme to $alacritty_conf" }