Skip to content

Commit

Permalink
feat(tmux): show OS in the right corner
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Sep 23, 2023
1 parent 13af45e commit 968bdac
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modules/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,17 @@ set -g status-justify "left"
set -g status-left-length "100"
set -g status-right-length "100"
set -g status-left ""
set -g status-right ""

if-shell -b 'test $(uname -s) = "Linux"' {
set -g status-right ""
}

if-shell -b 'test $(uname -s) = "Darwin"' {
set -g status-right ""
}

set -g status-right-style fg="${thm_yellow}"

set -g message-style fg="${thm_fg}",bg="${thm_gray}",align="centre"
set -g message-command-style fg="${thm_blue}",bg="${thm_gray}",align="centre"
set -g pane-border-style fg="${thm_gray}"
Expand Down

0 comments on commit 968bdac

Please sign in to comment.