Compare commits

..

4 Commits

Author SHA1 Message Date
4f151f6259 add sync pane key binding 2025-09-20 20:43:53 -05:00
1716c18e78 adjust tmux formatting 2025-09-02 10:37:35 -05:00
fccf085b0e remove tmux plugins 2025-09-02 10:35:32 -05:00
241f5646ee add music folder 2025-08-27 22:19:49 -05:00
2 changed files with 7 additions and 13 deletions

View File

@@ -63,13 +63,14 @@ while true; do
if [ "$storageChoice" = "y" ]; then
read -p "Specify the path to the external storage device (full path must be used): " storagePath
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ~/Music
ln -s "$storagePath/Pictures/" ~/
ln -s "$storagePath/Repos/" ~/
ln -s "$storagePath/Documents/" ~/
ln -s "$storagePath/Downloads/" ~/
ln -s "$storagePath/Videos/" ~/
ln -s "$storagePath/Music/" ~/
break
elif [ "$storageChoice" = "n" ]; then

View File

@@ -31,12 +31,12 @@ set -g pane-active-border-style '#{fg=#{COLOR2}}'
set -g status-left '#[fg=#{COLOR1} bold]  '
# Window Status
set -g window-status-current-format '#[fg=#{COLOR2} bold]#I#W '
set -g window-status-format '#[fg=#{COLOR1} bold]#I#W '
set -g window-status-current-format '#[fg=#{COLOR2} bold]#I#W '
set -g window-status-format '#[fg=#{COLOR1} bold]#I#W '
# Right
set -g status-right-length 200
set -g status-right '#[fg=#{COLOR1} bold]  %l:%M%p 󰃭 %m/%d/%Y 󰖐 #{forecast}  '
set -g status-right '#[fg=#{COLOR1} bold]  %l:%M%p 󰃭 %m/%d/%Y  '
# Movement Keybindings
bind-key -r -T prefix C-k select-pane -U
@@ -44,12 +44,5 @@ bind-key -r -T prefix C-j select-pane -D
bind-key -r -T prefix C-h select-pane -L
bind-key -r -T prefix C-l select-pane -R
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'aaronpowell/tmux-weather'
set -g @forecast-location 75025
set -g @forecast-format '%C+%t'
run '~/.tmux/plugins/tpm/tpm'
# Sync Pane Keybinding
bind-key -r -T prefix S setw synchronize-panes