https://github.com/raulil/gtk-pass
GTK GUI for Pass password manager
https://github.com/raulil/gtk-pass
gtk pass password-manager
Last synced: 4 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-23T15:47:50.000Z (about 1 year ago)
- Last Synced: 2025-03-23T16:36:00.602Z (about 1 year 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
#  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/

## 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
```