diff options
-rwxr-xr-x | bin/menuscripts/mpass | 1 | ||||
-rwxr-xr-x | config/common/tmux/tmux.conf | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/bin/menuscripts/mpass b/bin/menuscripts/mpass index 3d292c8..5dc2289 100755 --- a/bin/menuscripts/mpass +++ b/bin/menuscripts/mpass @@ -12,6 +12,7 @@ list_pswds() cut -f 2 | sed 's/\.gpg$//' } +file="$1" while [ -d "$store/$file" ] do choice="$(list_pswds "$store/$file" | commander -c)" diff --git a/config/common/tmux/tmux.conf b/config/common/tmux/tmux.conf index 0892ff8..0f35fb9 100755 --- a/config/common/tmux/tmux.conf +++ b/config/common/tmux/tmux.conf @@ -52,10 +52,10 @@ bind s split-window -v -c "#{pane_current_path}" bind -n M-H swap-pane -U bind -n M-L swap-pane -D ## Resizing panes -bind -r C-H resize-pane -L 5 -bind -r C-J resize-pane -D 5 -bind -r C-K resize-pane -U 5 -bind -r C-L resize-pane -R 5 +bind -r M-H resize-pane -L 5 +bind -r M-J resize-pane -D 5 +bind -r M-K resize-pane -U 5 +bind -r M-L resize-pane -R 5 # Join and break windows bind j command-prompt -1p "Take window:" "join-pane -s %%" bind J command-prompt -1p "Send to window:" "join-pane -t \:%% ; select-window -l" |