From fb45cc52794eb848575250d2684b3faeb0b91a98 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 12 Sep 2025 17:50:30 +0200 Subject: [PATCH] feat(tmux): set right status bar to include full hostname and RFC 3339 datetime (#37) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/37 --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index ffbc55b..11e9305 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,6 +1,9 @@ # Enable PS1 colors set -g default-terminal "screen-256color" +# Set custom right status bar: hostname.domain | RFC 3339 +set -g status-right '#(hostname).#(hostname -d) | #(date +"%Y-%m-%d %H:%M:%S")' + # Resize to smallest attached client set -g window-size smallest