diff options
author | Denis Kasak <dkasak@termina.org.uk> | 2017-07-15 13:32:33 +0200 |
---|---|---|
committer | Denis Kasak <dkasak@termina.org.uk> | 2017-07-15 13:32:33 +0200 |
commit | 99127105d7d3657a0afcebde7f22b7f50ac6686c (patch) | |
tree | 9da55e77c65421eb14ef05ec62561b7086258fba | |
parent | f3a4f3d08e609d6e851175879d389584fc16c112 (diff) | |
download | rofi-pass-99127105d7d3657a0afcebde7f22b7f50ac6686c.tar.gz |
Indent main() like other functions.
-rwxr-xr-x | rofi-pass | 159 |
1 files changed, 80 insertions, 79 deletions
@@ -594,85 +594,86 @@ help_msg () { } 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 - -# create tmp dir -if [[ ! -d "$HOME/.cache/rofi-pass" ]]; then - mkdir "$HOME/.cache/rofi-pass" -fi - -# fix keyboard layout if enabled in config -if [[ $fix_layout == "true" ]] -then - layout_cmd -fi - -# set help color -if [[ $help_color == "" ]]; then - help_color=$(rofi -dump-xresources | grep 'rofi.color.normal' | gawk -F ',' '/,/{gsub(/ /, "", $2); print $2}') -fi - -# check for BROWSER variable, use xdg-open as fallback -if [[ -z $BROWSER ]]; then - export BROWSER=xdg-open -fi - -# check if alternative root directory was given on commandline -if [[ -r "$HOME/.cache/rofi-pass/last_used" ]] && [[ $1 == "--last-used" || $1 == "--show-last" ]]; then - export root; root=$(awk -F ': ' '{ print $1 }' "$HOME/.cache/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) - if [[ -r "$HOME/.cache/rofi-pass/last_used" ]]; then - entry="$(awk -F ': ' '{ print $2 }' "$HOME/.cache/rofi-pass/last_used")" - fi - mainMenu - ;; - --show-last) - if [[ -r "$HOME/.cache/rofi-pass/last_used" ]]; then - selected_password="$(awk -F ': ' '{ print $2 }' "$HOME/.cache/rofi-pass/last_used")" viewEntry - else + # 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 + + # create tmp dir + if [[ ! -d "$HOME/.cache/rofi-pass" ]]; then + mkdir "$HOME/.cache/rofi-pass" + fi + + # fix keyboard layout if enabled in config + if [[ $fix_layout == "true" ]] + then + layout_cmd + fi + + # set help color + if [[ $help_color == "" ]]; then + help_color=$(rofi -dump-xresources | grep 'rofi.color.normal' | gawk -F ',' '/,/{gsub(/ /, "", $2); print $2}') + fi + + # check for BROWSER variable, use xdg-open as fallback + if [[ -z $BROWSER ]]; then + export BROWSER=xdg-open + fi + + # check if alternative root directory was given on commandline + if [[ -r "$HOME/.cache/rofi-pass/last_used" ]] && [[ $1 == "--last-used" || $1 == "--show-last" ]]; then + export root; root=$(awk -F ': ' '{ print $1 }' "$HOME/.cache/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 - fi - ;; - --bmarks) - mainMenu --bmarks; - ;; - *) - mainMenu - ;; -esac + ;; + --manage) + manageEntry + ;; + --help) + help_msg + ;; + --last-used) + if [[ -r "$HOME/.cache/rofi-pass/last_used" ]]; then + entry="$(awk -F ': ' '{ print $2 }' "$HOME/.cache/rofi-pass/last_used")" + fi + mainMenu + ;; + --show-last) + if [[ -r "$HOME/.cache/rofi-pass/last_used" ]]; then + selected_password="$(awk -F ': ' '{ print $2 }' "$HOME/.cache/rofi-pass/last_used")" viewEntry + else + mainMenu + fi + ;; + --bmarks) + mainMenu --bmarks; + ;; + *) + mainMenu + ;; + esac } + main "$@" |