diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-06-30 19:11:51 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-06-30 19:11:51 +0200 |
commit | 80f96813989c2fc20c46d20e2486a7e51b84697f (patch) | |
tree | d3dec5695b361e507f046fe704e3412f85620034 /dot-local-bin | |
parent | 83d18cf62456c3041ae140304c6b3d5b10fdc874 (diff) | |
download | sleipner-80f96813989c2fc20c46d20e2486a7e51b84697f.tar.gz |
ssh askpass: show prompt as window title
not the nicest since it says below to input a password, but that text
didn't seem configurable
Diffstat (limited to 'dot-local-bin')
-rwxr-xr-x | dot-local-bin/zenity-askpass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dot-local-bin/zenity-askpass b/dot-local-bin/zenity-askpass index 24a17bf..db26176 100755 --- a/dot-local-bin/zenity-askpass +++ b/dot-local-bin/zenity-askpass @@ -1,3 +1,3 @@ #!/bin/sh -zenity --password 2>/dev/null +zenity --password --title "$@" 2>/dev/null |