You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
Stew Alexander
committed
Add concise, meaningful comments explaining what and how
- Added sparse comments to Desktop-Linux-Tools.py explaining error handling, installation methods, and key logic
- Added comments to Debian-CLI-Tool_Installer.py clarifying system checks, package verification, and binary installation
- Comments focus on why decisions were made and how operations work
Copy file name to clipboardExpand all lines: Debian-CLI-Tool_Installer.py
+7-10Lines changed: 7 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
file_pass='a'
22
22
23
-
#Check if the system is debian, else halt program
23
+
# Verify Debian-based system via apt-get presence
24
24
is_debian=which("apt-get")
25
25
26
26
ifis_debian:
@@ -61,7 +61,7 @@
61
61
62
62
63
63
64
-
#Check if these programs exist [chkservice,htop,nnn,ncdu,network-manager,ne,hping3,nmap,lynis,apt-show-versions,vim,fish,tig,bmon,dnsutils,most], if not install them
64
+
#Check each program in PATH; install missing ones via apt
0 commit comments