mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-04-28 05:02:26 +00:00
Main Wrap
This commit is contained in:
parent
5b26fb0e65
commit
2847ad6578
1 changed files with 45 additions and 39 deletions
|
@ -2,6 +2,7 @@
|
||||||
from lib import Print, Install
|
from lib import Print, Install
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
Install.upgrade_pacman()
|
Install.upgrade_pacman()
|
||||||
|
|
||||||
Print.action('Package Installation')
|
Print.action('Package Installation')
|
||||||
|
@ -41,8 +42,13 @@ Install.package('gnome-system-monitor',
|
||||||
'Do you wish to install gnome system monitor?')
|
'Do you wish to install gnome system monitor?')
|
||||||
Install.package(
|
Install.package(
|
||||||
'code', 'Do you wish to install Visual Studio Code (Text/Code Editor)?')
|
'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'],
|
Install.multiple_packages(['firefox', 'chromium'],
|
||||||
'Do you wish to install web browser?')
|
'Do you wish to install web browser?')
|
||||||
|
|
||||||
Print.action('Package Installation Complete')
|
Print.action('Package Installation Complete')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
Loading…
Add table
Reference in a new issue