Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raulil/gtk-pass
GTK GUI for Pass password manager
https://github.com/raulil/gtk-pass
gtk pass password-manager
Last synced: about 4 hours ago
JSON representation
GTK GUI for Pass password manager
- Host: GitHub
- URL: https://github.com/raulil/gtk-pass
- Owner: RauliL
- License: isc
- Created: 2023-11-09T22:54:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-06T15:43:31.000Z (2 months ago)
- Last Synced: 2024-09-06T18:45:36.333Z (2 months ago)
- Topics: gtk, pass, password-manager
- Language: C++
- Homepage:
- Size: 124 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ![](icons/gtk-pass48.png) GTK-Pass
GTK-Pass is an simple GUI for the [pass] password manager inspired by
[passmenu], except that it uses [GTK] instead of dmenu. It simply lists
all available passwords from your password store (with simple search
available) and when you select one, the password is copied to your clipboard
for 45 seconds.That's it.
[pass]: https://www.passwordstore.org/
[passmenu]: https://git.zx2c4.com/password-store/tree/contrib/dmenu/passmenu
[GTK]: https://gtk.org/![Screenshot of GTK-Pass](screenshot.png)
## Dependencies
- [CMake](https://www.cmake.org)
- [GTKmm](https://gtkmm.org/en/index.html) >= 3.24
- C++17 compiler## Installation
```bash
$ git clone https://github.com/RauliL/gtk-pass.git
$ cd gtk-pass
$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo make install
```