parent
6fe8e46117
commit
978908e5af
@ -0,0 +1,10 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
if [[ -f /usr/bin/apk ]]; then # PostmarketOS/Alpine
|
||||||
|
sudo apk add py3-wxpython
|
||||||
|
elif [[ -f /usr/bin/apt ]]; then # Mobian/Debian/Ubuntu
|
||||||
|
sudo apt install python3-wxgtk4.0
|
||||||
|
elif [[ -f /usr/bin/dnf ]]; then # Fedora
|
||||||
|
sudo dnf install python3-wxpython4
|
||||||
|
fi
|
||||||
|
sudo cp passui /usr/local/bin/
|
||||||
|
sudo cp passui.desktop /usr/share/applications/
|
@ -0,0 +1,17 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=PassUi
|
||||||
|
Version=1.0
|
||||||
|
GenericName=Password Manager
|
||||||
|
GenericName[ca]=Gestor de contrasenyes
|
||||||
|
GenericName[nl]=Wachtwoordbeheerder
|
||||||
|
GenericName[sv_SE]=Lösenordshanterare
|
||||||
|
Comment=GUI for the standard unix password store
|
||||||
|
Comment[ca]=Interfície gràfica per al magatzem de contrasenyes UNIX estàndard
|
||||||
|
Comment[nl]=GUI voor de standaard Unix wachtwoordopslag
|
||||||
|
Comment[sv_SE]=GUI för Unix standardlösenordshanterare
|
||||||
|
Exec=/usr/local/bin/passui
|
||||||
|
Icon=dialog-password
|
||||||
|
Terminal=false
|
||||||
|
Categories=Security;Utility;
|
||||||
|
Keywords=Password;Manager;
|
Loading…
Reference in new issue