B:BD[
3.1489] → [
3.1489:1629]
B:BD[
3.1629] → [
2.227:278]
B:BD[
3.1673] → [
4.96:179]
∅:D[
4.179] → [
3.1743:1897]
B:BD[
3.1743] → [
3.1743:1897]
B:BD[
3.1897] → [
2.279:330]
B:BD[
3.1941] → [
4.180:263]
∅:D[
4.263] → [
3.2011:2019]
B:BD[
3.2011] → [
3.2011:2019]
"${swayPrefix}+p" = with pkgs; ''
exec ${wlrctl}/bin/wlrctl keyboard type \
"$(${passhole}/bin/ph show --field password \
"$(echo | ${passhole}/bin/ph grep -i . \
| ${bemenu}/bin/bemenu --ignorecase --center --margin 10 --list 10)")"
'';
"${swayPrefix}+Shift+p" = with pkgs; ''
exec ${wlrctl}/bin/wlrctl keyboard type \
"$(${passhole}/bin/ph show --field username \
"$(echo | ${passhole}/bin/ph grep -i . \
| ${bemenu}/bin/bemenu --ignorecase --center --margin 10 --list 10)")"
'';
"${swayPrefix}+p" = let name = "wlrctl_type_passhole_password"; in
"exec ${writeShellApplication {
inherit name;
runtimeInputs = [bemenu_choose_passhole_entry wlrctl_type_passhole_field_value];
text = ''wlrctl_type_passhole_field_value "$(bemenu_choose_passhole_entry)" password'';
}}/bin/${name}";
"${swayPrefix}+Shift+p" = let name = "wlrctl_type_passhole_password"; in
"exec ${writeShellApplication {
inherit name;
runtimeInputs = [bemenu_choose_passhole_entry wlrctl_type_passhole_field_value];
text = ''wlrctl_type_passhole_field_value "$(bemenu_choose_passhole_entry)" username'';
}}/bin/${name}";
"${swayPrefix}+Ctrl+p" = let name = "wlrctl_type_passhole_arbitrary_field"; in
"exec ${writeShellApplication {
inherit name;
runtimeInputs = [bemenu_choose_passhole_entry bemenu_choose_passhole_field wlrctl_type_passhole_field_value];
text = ''
ENTRY="$(bemenu_choose_passhole_entry)"
FIELD="$(bemenu_choose_passhole_field "$ENTRY")"
wlrctl_type_passhole_field_value "$ENTRY" "$FIELD"
'';
}}/bin/${name}";