From 881fb04020a42f37c7383a634f682b608c3d2398 Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 8 Feb 2024 21:55:12 -0600 Subject: tmux: Use user-installed tpm rather than the system path This uses the path from the github install guide for tpm, so it should work if you just copy and paste from there. --- tmux/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux/tmux.conf') diff --git a/tmux/tmux.conf b/tmux/tmux.conf index d421349..5d3bd6c 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -27,4 +27,4 @@ set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'https://git.linux-help.org/psi-jack/tmux-indicators' set -g @plugin 'tmux-plugins/tmux-battery' -run '/usr/share/tmux-plugin-manager/tpm' +run '~/.config/tmux/plugins/tpm/tpm' -- cgit v1.2.3 From 1bb066ec9b0e4d4bb6e698df67e866bfc8ddf62f Mon Sep 17 00:00:00 2001 From: zachir Date: Tue, 4 Jun 2024 23:28:15 -0500 Subject: Set tmux status bar This sets the tmux status bar with the date and time --- tmux/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux/tmux.conf') diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 5d3bd6c..8b23a90 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -6,8 +6,8 @@ set -g status-bg "#000000" set -g status-fg "#c5c6c4" # remove administrative debris (session-name, hostname, time) in status bar -set -g status-left '' -set -g status-right '#{battery_status_bg} Batt: #{battery_icon} #{battery_percentage} #{battery_remain}' +set -g status-left '%H:%M| ' +set -g status-right '%a %Y-%m-%d' # act live dvtm unbind C-b -- cgit v1.2.3