Add information comments to the beginning of process_list.txt

This commit is contained in:
flyingscorpio@arch-desktop 2021-01-03 03:48:09 +01:00
parent 98f1ea1eb9
commit c77d4d210e

View file

@ -157,8 +157,15 @@ class Installer:
ui.info("Generating 'process_list.txt'")
with open("process_list.txt", "w") as process_file:
process_file.write(
"# This list is all commented out, "
"uncomment the ones you want to setup.\n"
"\n"
)
process_file.write("# " + "\n# ".join(self.conf.keys()) + "\n")
ui.info("'process_list.txt' generated, you need to edit the file now")
def pretty_path(self, path: Path) -> str:
"""Put the ~/ back in the path."""