diff options
| -rw-r--r-- | .config/i3/config | 9 | ||||
| -rw-r--r-- | .config/tmux/tmux.conf | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.config/i3/config b/.config/i3/config index c6a5693..aa61018 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -161,6 +161,9 @@ bindsym $mod+8 workspace number $ws8 bindsym $mod+9 workspace number $ws9 bindsym $mod+0 workspace number $ws10 +bindsym $mod+x workspace number $ws10 +bindsym $mod+z workspace number $ws9 + # move focused container to workspace bindsym $mod+Shift+1 move container to workspace number $ws1 bindsym $mod+Shift+2 move container to workspace number $ws2 @@ -173,6 +176,12 @@ bindsym $mod+Shift+8 move container to workspace number $ws8 bindsym $mod+Shift+9 move container to workspace number $ws9 bindsym $mod+Shift+0 move container to workspace number $ws10 +bindsym $mod+Shift+x move container to workspace number $ws10 +bindsym $mod+Shift+z move container to workspace number $ws9 + +bindsym $mod+Ctrl+l move workspace to output right +bindsym $mod+Ctrl+h move workspace to output left + # reload the configuration file bindsym $mod+Shift+c reload # restart i3 inplace (preserves your layout/session, can be used to upgrade i3) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index ac1290f..d60285a 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -1,5 +1,6 @@ unbind C-b set -g prefix C-a +set -g status off bind v split-window -v -c "#{pane_current_path}" bind h split-window -h -c "#{pane_current_path}" @@ -7,7 +8,5 @@ bind h split-window -h -c "#{pane_current_path}" set -g @plugin "tmux-plugins/tpm" set -g @plugin "tmux-plugins/tmux-sensible" set -g @plugin "christoomey/vim-tmux-navigator" -set -g @plugin "catppuccin/tmux" -set -g @catppuccin_flavour "macchiato" run "~/.tmux/plugins/tpm/tpm" |
