Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lezgomatt/pass-pls
A GTK-based implementation of ssh-askpass
https://github.com/lezgomatt/pass-pls
gtk python ssh ssh-askpass
Last synced: 24 days ago
JSON representation
A GTK-based implementation of ssh-askpass
- Host: GitHub
- URL: https://github.com/lezgomatt/pass-pls
- Owner: lezgomatt
- License: zlib
- Created: 2020-04-19T15:01:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T10:29:38.000Z (over 4 years ago)
- Last Synced: 2024-11-16T17:11:33.561Z (about 2 months ago)
- Topics: gtk, python, ssh, ssh-askpass
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pass-pls
A GTK-based implementation of ssh-askpass.
**Why?** Because `ssh-askpass-gnome` was asking for a password even for confirmations.
Also, its lack of margins bothered me.## Screenshots
![Ask](https://raw.githubusercontent.com/lezgomatt/pass-pls/master/screenshots/ask.png)
![Confirm](https://raw.githubusercontent.com/lezgomatt/pass-pls/master/screenshots/confirm.png)
## Installation
To install:
```
$ sudo pip3 install pass-pls
$ sudo update-alternatives --install /usr/bin/ssh-askpass ssh-askpass /usr/local/bin/pass-pls 100
```To uninstall:
```
$ sudo update-alternatives --remove ssh-askpass /usr/local/bin/pass-pls
$ sudo pip3 uninstall pass-pls
```If you do not have `update-alternatives`, manually create a symlink instead.