summaryrefslogtreecommitdiff
path: root/help/C/l10n_scripts/text_entry.sh
diff options
context:
space:
mode:
Diffstat (limited to 'help/C/l10n_scripts/text_entry.sh')
-rwxr-xr-xhelp/C/l10n_scripts/text_entry.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/help/C/l10n_scripts/text_entry.sh b/help/C/l10n_scripts/text_entry.sh
new file mode 100755
index 0000000..4afd006
--- /dev/null
+++ b/help/C/l10n_scripts/text_entry.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+ if zenity --entry \
+ --title="Add an Entry" \
+ --text="Enter your _password:" \
+ --entry-text "password" \
+ --hide-text
+ then echo $?
+ else echo "No password entered"
+ fi
+