Main Wrap

This commit is contained in:
koumakpet 2020-03-11 15:36:21 +01:00
parent 5b26fb0e65
commit 2847ad6578

View file

@ -2,6 +2,7 @@
from lib import Print, Install
def main():
Install.upgrade_pacman()
Print.action('Package Installation')
@ -41,8 +42,13 @@ Install.package('gnome-system-monitor',
'Do you wish to install gnome system monitor?')
Install.package(
'code', 'Do you wish to install Visual Studio Code (Text/Code Editor)?')
Install.package('filelight', 'default + (Disk usage statistics and graphs)')
Install.package(
'filelight', 'default + (Disk usage statistics and graphs)')
Install.multiple_packages(['firefox', 'chromium'],
'Do you wish to install web browser?')
Print.action('Package Installation Complete')
if __name__ == "__main__":
main()