From 6cd2090af1098d44adcabf5be587e7ff46fc5594 Mon Sep 17 00:00:00 2001 From: Vladyslav Hroshev Date: Fri, 15 Dec 2023 13:37:34 +0200 Subject: [PATCH] Fix death screen on Fedora after installing GDM --- scripts/gdm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gdm.py b/scripts/gdm.py index 50ccf3f..78120f0 100644 --- a/scripts/gdm.py +++ b/scripts/gdm.py @@ -172,7 +172,7 @@ class GlobalTheme: # install theme print("Installing theme...") - os.system(f"sudo mv {self.extracted_theme}/{self.destination_file} " + os.system(f"sudo cp -f {self.extracted_theme}/{self.destination_file} " f"{self.destination_folder}/{self.destination_file}") return 0