├── .gitignore ├── .idea ├── Linux-Package-Installer.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Apt ├── Simple.py ├── run.py └── utils │ ├── Brow.py │ ├── Lang.py │ └── Programs.py ├── Licence ├── Readme.md ├── install.sh ├── main.py └── pacman ├── __pycache__ └── run.cpython-312.pyc ├── run.py ├── simple.py └── utils ├── Brows.py ├── Langua.py ├── Program.py └── __pycache__ ├── Brows.cpython-312.pyc ├── Langua.cpython-312.pyc └── Program.cpython-312.pyc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Linux-Package-Installer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/Linux-Package-Installer.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Apt/Simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Apt/Simple.py -------------------------------------------------------------------------------- /Apt/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Apt/run.py -------------------------------------------------------------------------------- /Apt/utils/Brow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Apt/utils/Brow.py -------------------------------------------------------------------------------- /Apt/utils/Lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Apt/utils/Lang.py -------------------------------------------------------------------------------- /Apt/utils/Programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Apt/utils/Programs.py -------------------------------------------------------------------------------- /Licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Licence -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/Readme.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/install.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/main.py -------------------------------------------------------------------------------- /pacman/__pycache__/run.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/__pycache__/run.cpython-312.pyc -------------------------------------------------------------------------------- /pacman/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/run.py -------------------------------------------------------------------------------- /pacman/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/simple.py -------------------------------------------------------------------------------- /pacman/utils/Brows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/Brows.py -------------------------------------------------------------------------------- /pacman/utils/Langua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/Langua.py -------------------------------------------------------------------------------- /pacman/utils/Program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/Program.py -------------------------------------------------------------------------------- /pacman/utils/__pycache__/Brows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/__pycache__/Brows.cpython-312.pyc -------------------------------------------------------------------------------- /pacman/utils/__pycache__/Langua.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/__pycache__/Langua.cpython-312.pyc -------------------------------------------------------------------------------- /pacman/utils/__pycache__/Program.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Linux-Package-Installer/HEAD/pacman/utils/__pycache__/Program.cpython-312.pyc --------------------------------------------------------------------------------