Browse Source

Update sysinfo.py

PythonCoder8 4 years ago
parent
commit
48102d45b1
1 changed files with 3 additions and 1 deletions
  1. 3 1
      ubuntu-debian-mint/sysinfo.py

+ 3 - 1
ubuntu-debian-mint/sysinfo.py

@@ -1,4 +1,5 @@
 #Sysinfo.py - Get info about computer and OS
+#Developed by PythonCoder8
 #Only works if you run this program on Linux since this program calls a bash script
 #Ubuntu, Debian, and Linux Mint only
 
@@ -15,9 +16,10 @@ start = time.time()
 #Display Python version
 print("Python version: %s" %(platform.python_version()))
 
-#If not already installed, install figlet and also clear screen
+#See if user has figlet installed, and if not installed, install it
 figlet_install = input("Do you have figlet installed on your linux terminal (Y/N)? ")
 
+#Clear terminal
 os.system("clear")
 
 if figlet_install.upper() == "Y":