├── LICENSE ├── PKGBUILD ├── README.md └── data ├── askpass.sh ├── aurin ├── aurin-in-action.png ├── aurin-installed.png ├── aurin-sudo.png ├── aurin.desktop ├── aurin.png ├── aurin48.png ├── install.py ├── installpkg.sh └── passprompt.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/README.md -------------------------------------------------------------------------------- /data/askpass.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 /opt/aurin/passprompt.py 3 | -------------------------------------------------------------------------------- /data/aurin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin -------------------------------------------------------------------------------- /data/aurin-in-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin-in-action.png -------------------------------------------------------------------------------- /data/aurin-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin-installed.png -------------------------------------------------------------------------------- /data/aurin-sudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin-sudo.png -------------------------------------------------------------------------------- /data/aurin.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin.desktop -------------------------------------------------------------------------------- /data/aurin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin.png -------------------------------------------------------------------------------- /data/aurin48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/aurin48.png -------------------------------------------------------------------------------- /data/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/install.py -------------------------------------------------------------------------------- /data/installpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/installpkg.sh -------------------------------------------------------------------------------- /data/passprompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aurin-Arch-Linux/Aurin/HEAD/data/passprompt.py --------------------------------------------------------------------------------