Minor feature update

Added power line font path to enable glyphs from powerline font.
MOTD replaced with `neofetch --off | lolcat`
minor bug fixes
This commit is contained in:
Raum0x2A
2025-12-10 01:28:53 -07:00
parent 0ca6196297
commit 54ee48bc7c
10 changed files with 359 additions and 2 deletions

28
files/.tmux.conf.ssh Normal file
View File

@@ -0,0 +1,28 @@
set-option status-position top
set default-shell /bin/zsh
set default-terminal "screen-256color"
#unbind C-b
unbind C-a
set prefix C-b
bind C-b send-prefix
#bind-key C-b send-prefix
#set-option prefix C-b
unbind '\'
bind '\' split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
set-option -g allow-rename off
set-option -g history-limit 30000
bind Up swap-pane -U
bind Down swap-pane -D
bind Left swap-pane -U # Note: swap -U moves to previous index, which may be left/up
bind Right swap-pane -D # Note: swap -D moves to next index, which may be right/down