Last active
June 10, 2022 13:28
-
-
Save zfarbp/376be4f118d08b35612c10efebd39e0b to your computer and use it in GitHub Desktop.
.tmux.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g prefix C-s | |
set -s escape-time 50 | |
set-option -g status on | |
set -g pane-border-style fg=colour232 | |
set -g pane-active-border-style "bg=default fg=colour232" | |
set-option -g status-interval 1 | |
set-option -g status-justify centre | |
set-option -g status-keys vi | |
set-option -g status-position bottom | |
set-option -g status-style fg=colour36,bg=colour232 | |
set-option -g status-left-length 20 | |
set-option -g status-left-style fg=colour93 | |
set-option -g status-left "#[fg=colour93] #(whoami) #[fg=black]" | |
set-option -g status-right-length 140 | |
set-option -g status-right-style fg=colour93 | |
set-option -g status-right "#[fg=green,bg=default]" | |
set-option -ag status-right "#[fg=colour93]#(osascript -e 'tell application \"Spotify\" to artist of current track') - #(osascript -e 'tell application \"Spotify\" to name of current track' ) " | |
set-window-option -g window-status-style fg=colour244 | |
set-window-option -g window-status-style bg=default | |
set-window-option -g window-status-current-style fg=colour166 | |
set-window-option -g window-status-current-style bg=default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment