diff --git a/i3/.config/i3/config b/i3/.config/i3/config index f858de4..2b8c05c 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -253,14 +253,14 @@ set $bar-inactive_workspace #755B69 #} # set background on startup -set $wallpaper ~/Pictures/wallpapers/trees_with_bird.jpg +set $wallpaper ~/Pictures/wallpapers/trees_snow.jpg exec --no-startup-id feh --bg-fill $wallpaper # turn picom on on start up exec_always --no-startup-id picom & # turn off borders (required for i3-gaps) -for_window [class=".*"] border pixel 1 +for_window [class=".*"] border pixel 2 # gaps gaps inner 10 diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 5a8d314..ac79bba 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -84,5 +84,15 @@ set -g pane-border-style bg=terminal set-window-option -g window-active-style bg=black set-window-option -g window-style bg=terminal +# adding ssh support +set -g @plugin 'pschmitt/tmux-ssh-split' +set-option -g @ssh-split-h-key "|" +set-option -g @ssh-split-v-key "-" +set-option -g @ssh-split-w-key "C" + +# Make /bin/bash the default shell, which will hopefully make it souce bashrc on startup +set-option -g default-shell "/bin/bash" +set-option -g default-command bash + # Initializes tmux plugin manager - keep this at the bottom run '~/.config/tmux/plugins/tpm/tpm'