diff --git a/config.example b/config.example
index eb3e60c..6f7dad7 100644
--- a/config.example
+++ b/config.example
@@ -22,6 +22,7 @@ BROWSER='chromium'
## Misc settings
help_color='#0C73C2'
+help_color2='#FF0000'
auto_enter='false'
# Clipboard settings
diff --git a/rofi-pass b/rofi-pass
index 6decb72..2085fb9 100755
--- a/rofi-pass
+++ b/rofi-pass
@@ -68,8 +68,8 @@ doClip () {
# main Menu
mainMenu () {
- HELP="${autotype}: Autotype, ${type_user}: Type User, ${type_pass}: Type Password, ${open_url}: Open URL
-${copy_name}: Copy Username, ${copy_pass}: Copy Password, ${copy_url}: Copy URL, ${show}: Show Entry"
+ HELP="${autotype}: Autotype, ${type_user}: Type User, ${type_pass}: Type Password, ${open_url}: Open URL
+${copy_name}: Copy Username, ${copy_pass}: Copy Password, ${copy_url}: Copy URL, ${show}: Show Entry"
selected_password="$(echo -e "[ Add Entry ]>\n[ Manage Database ]>\n---\n$(list_passwords 2>/dev/null)" | _rofi -mesg "${HELP}" -dmenu -kb-custom-1 "${autotype}" -kb-custom-2 "${type_user}" -kb-custom-3 "${type_pass}" -kb-custom-4 "${open_url}" -kb-custom-5 "${copy_name}" -kb-custom-6 "${copy_pass}" -kb-custom-7 "${show}" -kb-custom-8 "${copy_url}" -dmenu -select "$entry" -p "rofi-pass > ")"
rofi_exit=$?