Crates.io | xaskpass |
lib.rs | xaskpass |
version | 2.5.9 |
source | src |
created_at | 2021-01-09 21:19:54.268886 |
updated_at | 2024-09-23 21:33:12.694854 |
description | A lightweight passphrase dialog |
homepage | |
repository | https://github.com/user827/xaskpass |
max_upload_size | |
id | 337211 |
size | 347,710 |
Xaskpass is a lightweight passphrase dialog for X11 with extensive configuration options that is implemented without relying on heavy GUI libraries. It aims to be a successor to the similar but now old x11-ssh-askpass by preserving its fast startup time while modernizing some features such as fonts. It also tries to make sure the password stays in the memory for the shortest time.
Classic indicator | Strings/Asterisk | Strings/Disco |
---|---|---|
In Arch Linux the easiest way to install is to use the aur package.
If the C libraries are already installed, cargo install can be used to install in ~/.cargo/bin/xaskpass:
cargo install xaskpass
To build from the repository, use:
cargo build --release --locked
Make sure rustc
is 1.74+ (reason) and you have the following C libraries installed:
For example in Arch Linux you can run:
pacman -S libxkbcommon libxkbcommon-x11 libxcb pango cairo clang
To make ssh
or sudo
use xaskpass
set
SSH_ASKPASS=/path/to/xaskpass
or SUDO_ASKPASS
(and use sudo -A
) respectively.
Xaskpass firsts tries to read configuration from $XDG_CONFIG_HOME/xaskpass/xaskpass.toml
. If not found,
$XDG_CONFIG_DIRS/xaskpass/xaskpass.toml
is tried.
A default configuration file with comments can be found here.
To make the startup time faster, for example, the font file used can be specified with
[dialog]
font_file = '/path/to/fonts/TTF/DejaVuSansMono.ttf'
See xaskpass --help
and the comments in the default configuration
file.
You can create directory pregen
to speed up build.rs
by letting it save the
generated bindings there.
Xaskpass is released under the Apache License, Version 2.0.