├── .gitignore ├── About.ui ├── Glossary.ui ├── LICENSE ├── PKEIconV001.png ├── README.md ├── Ui_About.py ├── Ui_Glossary.py ├── Ui_polkitex.py ├── compile_forms.sh ├── polkitex.desktop ├── polkitex.py └── polkitex.ui /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /About.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/About.ui -------------------------------------------------------------------------------- /Glossary.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/Glossary.ui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /PKEIconV001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/PKEIconV001.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/README.md -------------------------------------------------------------------------------- /Ui_About.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/Ui_About.py -------------------------------------------------------------------------------- /Ui_Glossary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/Ui_Glossary.py -------------------------------------------------------------------------------- /Ui_polkitex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/Ui_polkitex.py -------------------------------------------------------------------------------- /compile_forms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/compile_forms.sh -------------------------------------------------------------------------------- /polkitex.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/polkitex.desktop -------------------------------------------------------------------------------- /polkitex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/polkitex.py -------------------------------------------------------------------------------- /polkitex.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarygliders/Polkit-Explorer/HEAD/polkitex.ui --------------------------------------------------------------------------------