Skip to content

Commit 48102d4

Browse files
authored
Update sysinfo.py
1 parent c8d3312 commit 48102d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ubuntu-debian-mint/sysinfo.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#Sysinfo.py - Get info about computer and OS
2+
#Developed by PythonCoder8
23
#Only works if you run this program on Linux since this program calls a bash script
34
#Ubuntu, Debian, and Linux Mint only
45

@@ -15,9 +16,10 @@
1516
#Display Python version
1617
print("Python version: %s" %(platform.python_version()))
1718

18-
#If not already installed, install figlet and also clear screen
19+
#See if user has figlet installed, and if not installed, install it
1920
figlet_install = input("Do you have figlet installed on your linux terminal (Y/N)? ")
2021

22+
#Clear terminal
2123
os.system("clear")
2224

2325
if figlet_install.upper() == "Y":

0 commit comments

Comments
 (0)