We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d3312 commit 48102d4Copy full SHA for 48102d4
ubuntu-debian-mint/sysinfo.py
@@ -1,4 +1,5 @@
1
#Sysinfo.py - Get info about computer and OS
2
+#Developed by PythonCoder8
3
#Only works if you run this program on Linux since this program calls a bash script
4
#Ubuntu, Debian, and Linux Mint only
5
@@ -15,9 +16,10 @@
15
16
#Display Python version
17
print("Python version: %s" %(platform.python_version()))
18
-#If not already installed, install figlet and also clear screen
19
+#See if user has figlet installed, and if not installed, install it
20
figlet_install = input("Do you have figlet installed on your linux terminal (Y/N)? ")
21
22
+#Clear terminal
23
os.system("clear")
24
25
if figlet_install.upper() == "Y":
0 commit comments