aboutsummaryrefslogtreecommitdiffstats
path: root/rofi-pass
blob: 27970572a20b3cdff64c45077fbcfbbc90575688 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
#!/bin/bash

# rofi-pass
# (c) 2015 Rasmus Steinke <rasi@xssn.at>
basecommand=$(echo "$0" | awk '{ print $1 }')


# get all password files and create an array
list_passwords() {
    cd "${root}"
    passwords=( **/*.gpg )

	for password in "${passwords[@]}"; do
		filename="${password}"
		filename="${filename%.gpg}"
		echo "$filename"
	done
}

doClip () {
    if [[ $clip == "primary" ]]; then xclip;
    elif [[ $clip == "clipboard" ]]; then xclip -selection clipboard;
    elif [[ $clip == "both" ]]; then xclip; xclip -o | xclip -selection clipboard;
    fi
}

checkIfPass () {
    if [[ $selected_password == "[ Add Entry ]>" ]]; then mainMenu;
    elif [[ $selected_password == "---" ]]; then mainMenu;
    else
        rm -f "$HOME/.config/rofi-pass/last_used"
        echo "${root}: $selected_password" > "$HOME/.config/rofi-pass/last_used"
    fi
}


autopass () {
    if [[ ${selected_password} == "[ Add Entry ]>" ]]; then insertPass;
    elif [[ ${selected_password} == "---" ]]; then mainMenu;
    else
        rm -f "$HOME/.config/rofi-pass/last_used"                                 
        echo "${root}: $selected_password" > "$HOME/.config/rofi-pass/last_used"
        if [[ -z "${stuff["$AUTOTYPE_field"]}" ]]; then
            echo -n "${stuff["${USERNAME_field}"]}" | xdotool type --clearmodifiers --file -
            xdotool key Tab
            echo -n "${password}" | xdotool type --clearmodifiers --file -
            sleep 1
            if [[ ${auto_enter} == "true" ]]; then xdotool key Return; fi
        else
            echo "${stuff["$AUTOTYPE_field"]}"
            for word in ${stuff["$AUTOTYPE_field"]}; do
                if [[ $word == ":tab" ]]; then xdotool key Tab;
                elif [[ $word == ":space" ]]; then xdotool key space;
                elif [[ $word == ":delay" ]]; then sleep ${delay};
                elif [[ $word == ":enter" ]]; then xdotool key Return;
                elif [[ $word == "pass" ]]; then echo -n "${password}" | xdotool type --clearmodifiers --file -;
                else echo -n "${stuff[${word}]}" | xdotool type --clearmodifiers --file -
                fi
            done
            if [[ ${auto_enter} == "true" ]]; then xdotool key Return; fi
        fi
    fi
}

openURL () {
    checkIfPass
    $BROWSER "$(pass "$selected_password" | grep "${URL_field}: " | awk '{sub(/:/,"")}{print $2}1' | head -1)"; exit;
}

typeUser () {
    checkIfPass
    echo -n "${stuff[${USERNAME_field}]}" | xdotool type --clearmodifiers --file -
}

typePass () {
    checkIfPass
    echo -n "${password}" | xdotool type --clearmodifiers --file -
    if [[ $notify == "true" ]]; then
        if [[ "${stuff[notify]}" == "false" ]]; then
            :
        else notify-send "rofi-pass" "finished typing password";
        fi
    elif [[ $notify == "false" ]]; then
        if [[ "${stuff[notify]}" == "true" ]]; then notify-send "rofi-pass" "finished typing password";
        else
           :
        fi
    fi
}

typeField () {
    checkIfPass
    echo -n "${stuff[${typefield}]}" | xdotool type --clearmodifiers --file -
}

copyUser () {
    checkIfPass
    echo -n "${stuff[${USERNAME_field}]}" | doClip
}

copyField () {
    checkIfPass
    echo -n "${stuff[${copyfield}]}" | doClip
}

copyURL () {
    checkIfPass
    echo -n "${stuff[${URL_field}]}" | doClip
}

copyPass () {
    checkIfPass
    echo -n "$password" | doClip
    notify-send "rofi-pass" "Copied Password\nClearing in 45 seconds"
    $(sleep 45; echo -n "" | xclip; echo "" | xclip -selection clipboard | notify-send "rofi-pass" "Clipboard cleared") &
}

viewEntry () {
    checkIfPass
    showEntry "${selected_password}"
}

generatePass () {
    askGen () {
        askGenMenu=$(echo -e "Yes\nNo" | rofi -dmenu -p "Generate new Password for ${selected_password}? > ")
        if [[ $askGenMenu == "Yes" ]]; then
            true
        elif [[ $askGenMenu == "No" ]]; then
            generatePass
        fi
    }

    checkIfPass
    symbols=$(echo -e "0  Cancel\n---\n1  Yes\n2  No" | rofi -dmenu -p "Use Symbols? > ")
    if [[ $symbols == "0  Cancel" ]]; then mainMenu;
    elif [[ $symbols == "1  Yes" ]]; then symbols="";
    elif [[ $symbols == "2  No" ]]; then symbols="-n";
    fi
    HELP="<span color='$help_color'>Enter Number or hit Enter to use default length</span>"
    length=$(echo -e "" | _rofi -dmenu -mesg "${HELP}" -p "Password length? (Default: ${passlength}) > ")
    askGen
    if [[ $length == "" ]]; then pass generate ${symbols} -i "$selected_password" "${passlength}" > /dev/null;
    else pass generate ${symbols} -i "$selected_password" "${length}" > /dev/null;
    fi
}

# main Menu
mainMenu () {
    if [[ $1 == "--bmarks" ]]; then
        selected_password="$(echo -e "$(list_passwords 2>/dev/null)" \
            | _rofi -mesg "Bookmarks Mode. ${switch} to switch" \
            -dmenu \
            -kb-custom-1 "Alt+x" \
            -select "$entry" \
            -p "rofi-pass > ")"

        rofi_exit=$?
        
        if [[ $rofi_exit -eq 1 ]]; then
            exit
        elif [[ $rofi_exit -eq 10 ]]; then
            $(${basecommand})
        elif [[ $rofi_exit -eq 0 ]]; then
            openURL
        fi
    else
        unset selected_password
        help_text=$(echo -e "Enter: Autotype - ${action_menu}: Actions - ${show}: View\n${type_menu}: Type Field - ${copy_menu}: Copy Field - ${help}: Help" | column -s '-' -t)
        line1=$(echo "${help_text}" | head -1)
        line3=$(echo "${help_text}" | tail -1)
HELP="<span color='$help_color'>${line1}
${line3}</span>"
        selected_password="$(echo -e "[ Add Entry ]>\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}" \
            -kb-custom-13 "${type_menu}" \
            -kb-custom-14 "${action_menu}" \
            -kb-custom-15 "${copy_menu}" \
            -kb-custom-16 "${help}" \
            -kb-custom-17 "${switch}" \
            -dmenu \
            -select "$entry" \
            -p "rofi-pass > ")"

      	rofi_exit=$?

        if [[ ${selected_password} == "[ Add Entry ]>" ]]; then
            :
        else
            # generate Array of fields
            password_temp=$(PASSWORD_STORE_DIR="${root}" pass "$selected_password")
            password=$(echo "${password_temp}" | head -1)
            declare -A stuff
            while read LINE; do
                _id=$(echo -e "${LINE}" | awk -F ':[[:space:]]*' '{print $1}')
                _val=$(echo -e "${LINE}" | awk '{sub(/:/,"")}{for (i=2; i<NF; i++) printf $i " "; print $NF}')
                stuff["${_id}"]=${_val}
            done < <(PASSWORD_STORE_DIR="${root}" pass "${selected_password}" | tail -n+2 | grep -P '(: |:\t)' )
            stuff["pass"]=${password}
        fi

        # actions based on keypresses
        if [[ "${rofi_exit}" -eq 0 ]]; then autopass;
        elif [[ "${rofi_exit}" -eq 13 ]]; then openURL;
        elif [[ "${rofi_exit}" -eq 1 ]]; then exit ${rofi_exit};
        elif [[ "${rofi_exit}" -eq 10 ]]; then autopass;
        elif [[ "${rofi_exit}" -eq 11 ]]; then typeUser;
        elif [[ "${rofi_exit}" -eq 12 ]]; then typePass;
        elif [[ "${rofi_exit}" -eq 14 ]]; then copyUser;
        elif [[ "${rofi_exit}" -eq 17 ]]; then copyURL;
        elif [[ "${rofi_exit}" -eq 16 ]]; then viewEntry;
        elif [[ "${rofi_exit}" -eq 15 ]]; then copyPass;
        elif [[ "${rofi_exit}" -eq 22 ]]; then typeMenu;
        elif [[ "${rofi_exit}" -eq 23 ]]; then actionMenu;
        elif [[ "${rofi_exit}" -eq 25 ]]; then unset selected_password; helpMenu;
        elif [[ "${rofi_exit}" -eq 24 ]]; then copyMenu;
        elif [[ "${rofi_exit}" -eq 26 ]]; then $(${basecommand} --bmarks);
        fi
    	password=''
    	selected_password=''
    	unset stuff
    	unset password
    	unset selected_password
    	unset password_temp
    	unset stuff
    fi
}

helpMenu () {
    helptext=$(echo -e "${autotype}: Autotype
${type_user}: Type Username
${type_pass}: Type Password
${type_menu}: Type Custom Field
---
${copy_name}: Copy Username
${copy_pass}: Copy Password
${copy_url}: Copy URL
${copy_menu}: Copy Custom Field
---
${action_menu}: Edit, Move, Delete, Re-generate Submenu
${show}: Show Password File
Alt+x: Switch Pass/Bookmark Mode" | _rofi -dmenu -p "Help > ")
if [[ $help == "" ]]; then exit;
else unset helptext; mainMenu; fi
}

typeMenu () {
    checkIfPass
    typefield=$(echo -e "< Return\n---\npassword\n$(pass ${selected_password} | grep -P ':[\t ]' | awk -F ':' '{ print $1 }')" | _rofi -dmenu -p "Choose Field to type > ")
    if [[ $typefield == "" ]]; then exit;
    elif [[ $typefield == "password" ]]; then typePass;
    elif [[ $typefield == "< Return" ]]; then mainMenu;
    else typeField
    fi
}

copyMenu () {
    checkIfPass
    copyfield=$(echo -e "< Return\n---\npassword\n$(pass ${selected_password} | grep -P ':[\t ]' | awk -F ':' '{ print $1 }')" | _rofi -dmenu -p "Choose Field to type > ")
    if [[ $copyfield == "" ]]; then exit;
    elif [[ $copyfield == "password" ]]; then copyPass;
    elif [[ $copyfield == "< Return" ]]; then mainMenu;
    else copyField
    fi
}

actionMenu () {
    checkIfPass
    action=$(echo -e "< Return\n---\n1 Move Password File\n2 Delete Password File\\n3 Edit Password File\n4 Generate New Password" | _rofi -dmenu -p "Choose Action > ")
    if [[ ${action} == "1 Move Password File" ]]; then manageEntry move;
    elif [[ ${action} == "2 Delete Password File" ]]; then manageEntry delete;
    elif [[ ${action} == "3 Edit Password File" ]]; then manageEntry edit;
    elif [[ ${action} == "4 Generate New Password" ]]; then generatePass;
    elif [[ ${action} == "< Return" ]]; then mainMenu;
    elif [[ ${action} == "" ]]; then exit
    fi
}

showEntry () {
    HELP="<span color='$help_color'>${type_entry}: Type Entry | ${copy_entry}: Copy Entry</span>"
    bla=$(echo -e "0  Return\n---\n$(PASSWORD_STORE_DIR="${root}" pass "$selected_password")" | _rofi -dmenu -mesg "${HELP}" -p "> ")
    rofi_exit=$?
    password_temp=$(PASSWORD_STORE_DIR="${root}" pass "$selected_password")
    password=$(echo "${password_temp}" | head -1)
    declare -A stuff

    while read LINE; do
        _id=$(echo -e "${LINE}" | awk -F ':[[:space:]]*' '{print $1}')
        _val=$(echo -e "${LINE}" | awk '{sub(/:/,"")}{for (i=2; i<NF; i++) printf $i " "; print $NF}')
        stuff["${_id}"]=${_val}

    done < <(PASSWORD_STORE_DIR="${root}" pass "${selected_password}" | tail -n+2 | grep -P '(: |:\t)' )
    stuff["pass"]=${password}

    word=$(echo "$bla" | awk -F': ' '{print $1}')
    if [[ ${rofi_exit} -eq 0 ]]; then
        if [[ $bla == "" ]]; then exit
        elif [[ $bla == "0  Return" ]]; then
            selected_password=""
            mainMenu
        fi
    elif [[ ${rofi_exit} -eq 1 ]]; then
        exit
    elif [[ ${rofi_exit} -eq 11 ]]; then
        if [[ ${bla} == "0  Return" ]]; then
            echo "not doing anything"
        else
            if [[ -z $(echo -n "${stuff[${word}]}") ]]; then
                echo -n "$word" | doClip
            else
                echo -n "${stuff[${word}]}" | doClip
            fi
            notify-send "rofi-pass" "Copied Password\nClearing in 45 seconds"
            $(sleep 45; echo -n "" | xclip; echo "" | xclip -selection clipboard | notify-send "rofi-pass" "Clipboard cleared") &
        exit

        fi
    elif  [[ ${rofi_exit} -eq 10 ]]; then
        if [[ ${bla} == "0  Return" ]]; then
            echo "not doing anything"
        else
            if [[ -z $(echo -n "${stuff[${word}]}") ]]; then
                xdotool type ${word}
        else
            echo -n "${stuff[${word}]}" | xdotool type --clearmodifiers --file -
            xdotool key ctrl+alt
            fi
        fi
        if [[ ${count} == "off" ]]; then
            exit
        else
            sleep ${count}
        fi
        showEntry
    elif [[ ${rofi_exit} -eq 1 ]]; then
        exit
    fi
	unset stuff
	unset password
	unset selected_password
	unset password_temp
	unset stuff
    exit
}

manageEntry () {
    if [[ "$1" == "edit" ]]; then
        EDITOR=$EDITOR PASSWORD_STORE_DIR="${root}" pass edit "${selected_password}"
        mainMenu

    elif [[ $1 == "move" ]]; then
        cd "${root}"
        selected_password2=$(basename "$selected_password" .gpg)
        group=$(find -type d -not -iwholename '*.git*' -printf '%d\t%P\n' | sort -r -nk1 | cut -f2- | _rofi -dmenu -p "Choose Group > ")
        if [[ $group == "" ]]; then exit; fi
        PASSWORD_STORE_DIR="${root}" pass mv "$selected_password" "${group}"
        mainMenu

    elif [[ "$1" == "delete" ]]; then
        HELP="<span color='$help_color'>Selected entry: ${selected_password}</span>"
        ask=$(echo -e "Yes\nNo" | _rofi -mesg "${HELP}" -dmenu -p "Are You Sure? > ")
        if [[ "$ask" == "Yes" ]]; then
            PASSWORD_STORE_DIR="${root}" pass rm --force "${selected_password}"
        elif [[ "$ask" == "No" ]]; then
            mainMenu
        elif [[ -z "$ask" ]]; then
            exit
        fi
    else
        mainMenu
    fi
}

insertPass () {
    if [[ -z "$pass" ]]; then
        if [[ -n "$1" ]]; then
            pass="$1"
            pass2="***"
        else
            pass2="Empty"
        fi
    fi
    if [[ -z "$user" ]]; then user="Empty"; fi
    if [[ -z "$domain" ]]; then domain="Empty"; fi
    if [[ -z "$name" ]]; then name="Empty"; fi

    insertmenu=$(echo -e "0  Return to Main Menu\n*  Accept Values and Add Password Entry\n---\n1  Name ($name)\n2  URL ($domain)\n3  User ($user)\n4  Password ($pass2)" | _rofi -dmenu -mesg "<span color='$help_color'>For faster adding use the addpass command</span>" -p "Add Entry > ")
    if [[ $insertmenu == "0  Return to Main Menu" ]]; then mainMenu
    elif [[ $insertmenu == "" ]]; then exit
    elif [[ $insertmenu == "*  Accept Values and Add Password Entry" ]]; then
        cd "${root}"
        group=$(echo -e "No Group\n---\n$(find -type d -not -iwholename '*.git*' -printf '%d\t%P\n' | sort -r -nk1 | cut -f2-)" | _rofi -dmenu -p "Choose Group > ")
        if [[ "$group" == "No Group" ]]; then
            PASSWORD_STORE_DIR="${root}" pass insert -m -f "${name}" < <(echo -e "${pass}\nUserName: ${user}\n---\n${URL_field}: ${domain}")
        elif [[ "$group" == "" ]]; then
            exit
        else
            PASSWORD_STORE_DIR="${root}" pass insert -m -f "${group}/${name}" < <(echo -e "${pass}\nUserName: ${user}\n---\n${URL_field}: ${domain}")
        fi
        exit
    elif [[ $insertmenu == "1  Name"* ]]; then
        name=$(echo "" | _rofi -dmenu -p "Enter Name > ")
        insertPass

    elif [[ $insertmenu == "2  URL"* ]]; then
        HELP="<span color='$help_color'>Enter Domain Name</span>"
        domain=$(echo -e "< Return" | _rofi -dmenu -mesg "${HELP}" -p "URL > ")
        if [[ $domain == "< Return" ]]; then
            insertPass
        elif [[ $domain == "" ]]; then
            exit
        else
            insertPass
        fi
    elif [[ $insertmenu == "3  User"* ]]; then
        HELP="<span color='$help_color'>Enter Username</span>"
        user=$(echo -e "" | _rofi -dmenu -mesg "${HELP}" -p "Username > ")
        insertPass
    elif [[ $insertmenu == "4  Password"* ]]; then
        password_length=12
        symbols="False"
        numerals="True"
        capitals="True"
        password_gen
    else
        insertPass
    fi
}

password_gen () {
    if [[ $capitals == "True" ]]; then cap="-c"; else cap="-A"; fi
    if [[ $symbols == "True" ]]; then sym="-y"; else sym=""; fi
    if [[ $numerals == "True" ]]; then num="-n"; else num="-0"; fi
    HELP="<span color='$help_color'>Choose one password or type your own</span>"
    menu=$(echo -e "0  Return to Insert Menu\n*  Generate new Password\n---\n1  Password Length\n2  Include Capitals ($capitals)\n3  Include Numerals ($numerals)\n4  Include Symbols ($symbols)\n---\n$(pwgen $num $cap $sym -B -1 $password_length 5)" | _rofi -dmenu -mesg "${HELP}" -p "Password > ")

    if [[ $menu == "1  Password Length" ]]; then
        password_length=$(echo -e "5\n7\n10\n12\n15\n20" | _rofi -dmenu -p "Choose Length > ")
        password_gen
    elif [[ $menu == "0  Return to Insert Menu" ]]; then
        insertPass
    elif [[ $menu == "*  Generate new Password" ]]; then
        password_gen
    elif [[ $menu == "2  Include Capitals"* ]]; then
        capitals=$(echo -e "True\nFalse" | _rofi -dmenu -p "Capitals? > ")
        password_gen
    elif [[ $menu == "3  Include Numerals"* ]]; then
        numerals=$(echo -e "True\nFalse" | _rofi -dmenu -p "Numerals? > ")
        password_gen
    elif [[ $menu == "4  Include Symbols"* ]]; then
        symbols=$(echo -e "True\nFalse" | _rofi -dmenu -p "Symbols? > ")
        password_gen
    else
        insertPass "$menu"
    fi
}

function _rofi () {
    rofi -dmenu -z $(echo "${rofiopts}") "$@"
}

help_msg () {
    echo "rofi-pass (Version: 1.2)"
    echo ""
    echo -e "Usage:\n"
    echo "--insert         insert new entry to password store"
    echo "--manage         edit/move/delete entries"
    echo -e "--root           set custom root directory"
    echo "--last-used      highlight last used item"
    echo "--show-last      show details of last used Entry"
    echo ""
}

main () {
# enable extended globbing
shopt -s nullglob globstar

# check if global config exists and load it
if [[ -f /etc/rofi-pass.conf ]]; then
    source /etc/rofi-pass.conf
fi

# check if local config exists and load it
if [[ -f $HOME/.config/rofi-pass/config ]]; then
    source $HOME/.config/rofi-pass/config
fi

# set help color                                                                                            
if [[ $help_color == "" ]]; then
    help_color=$(rofi -dump-xresources | grep 'rofi.color.normal' | awk -F ', ' '{ print $2 }')
    help_separator_color=$(rofi -dump-xresources | grep 'rofi.color.normal' | awk -F ', ' '{ print $2 }')
fi

# check for BROWSER variable, use xdg-open as fallback
if [[ -z $BROWSER ]]; then
    export BROWSER=xdg-open
fi

if [[ -z ${count} ]]; then
    count=2
fi

# check if alternative root directory was given on commandline
if [[ $1 == "--last-used" || $1 == "--show-last" ]]; then
    export root=$(awk -F ': ' '{ print $1 }' $HOME/.config/rofi-pass/last_used)
elif [[ -n "$2" && "$1" == "--root" ]]; then
    export root="${2}"
elif [[ -n $root ]]; then
    export root="${root}"
elif [[ -n ${PASSWORD_STORE_DIR} ]]; then
    export root=${PASSWORD_STORE_DIR}
else
    export root="$HOME/.password-store"
fi
export PASSWORD_STORE_DIR="${root}"
    case $1 in
    --insert)
        insertPass
        ;;
    --root)
        mainMenu
        ;;
    --manage)
        manageEntry
        ;;
    --help)
        help_msg
        ;;
    --last-used)
        entry="$(awk -F ': ' '{ print $2 }' $HOME/.config/rofi-pass/last_used)" mainMenu
        ;;
    --show-last)
        selected_password="$(awk -F ': ' '{ print $2 }' $HOME/.config/rofi-pass/last_used)" showEntry
        ;;
    --bmarks)
        mainMenu --bmarks;
        ;;
    *)
        mainMenu
        ;;
esac
}
main "$@"