diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-11 17:48:04 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-11 17:48:04 +0200 |
commit | 3edcea302050baacb1b4ca0c042f9c2680a46386 (patch) | |
tree | 2aa42a4daefedab80fa568874560d4d81731b2df | |
parent | b3657e02c91d8f4441f17d6151f71fc328e00c65 (diff) |
checkpoint
-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" |