From 25833e232ea9b0c58867edff4642d90a51292c09 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin Date: Sat, 25 May 2019 14:22:49 +0200 Subject: [PATCH] New keybind for Terminator to avoid i3 conflict To resize and move terminals in a single window --- .config/terminator/config | 10 ++++++++++ .zshrc | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.config/terminator/config b/.config/terminator/config index d994016..c5a0f99 100644 --- a/.config/terminator/config +++ b/.config/terminator/config @@ -7,8 +7,18 @@ title_use_system_font = False use_custom_url_handler = True [keybindings] + go_down = Down + go_left = Left + go_next = n + go_prev = p + go_right = Right + go_up = Up layout_launcher = l reset_clear = l + resize_down = Down + resize_left = Left + resize_right = Right + resize_up = Up switch_to_tab_1 = None switch_to_tab_2 = None [layouts] diff --git a/.zshrc b/.zshrc index 8e33835..60c3a83 100644 --- a/.zshrc +++ b/.zshrc @@ -110,11 +110,11 @@ alias pica02='sshfs qduchemi@pica02.picasoft.net:/DATA/docker /mnt/pica02' alias pica_test='sshfs qduchemi@pica01-test.picasoft.net:/DATA/docker /mnt/pica01-test' # SSH port forwarding for Picasoft LDAP -alias ldap_pica='sudo ssh -L 389:localhost:389 qduchemi@monitoring.picasoft.net -i /home/.ssh/id_rsa' +alias ldap_pica='sudo ssh -L 389:localhost:389 qduchemi@monitoring.picasoft.net -i ~/.ssh/id_rsa' # Start ssh-agent and retain passphrase for 1 hour # ssh-add is not used for convenience # Instead "AddKeysToAgent yes" option in ~/.ssh/config for "Host *" eval "$(ssh-agent -s -t 3600)" -alias lt='ls -lath' \ No newline at end of file +alias lt='ls -lath'