better tmux ssh and bashrc sourcing

This commit is contained in:
clint 2024-10-29 16:09:36 -05:00
parent df1e0feff4
commit 0ceae46501
2 changed files with 12 additions and 2 deletions

View File

@ -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

View File

@ -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'