From 392782cba0d55d7e25c78de8a7a728ef7104eb7f Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Thu, 4 Sep 2025 22:15:55 +0000 Subject: [PATCH] Add tmux.conf and enable mousewheel in screenrc --- screenrc | 3 +++ tmux.conf | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 tmux.conf diff --git a/screenrc b/screenrc index 8a40419..992ec6d 100644 --- a/screenrc +++ b/screenrc @@ -67,6 +67,9 @@ # Change default scrollback value for new windows defscrollback 10000 # default: 100 +# Enable the scroll wheel / trackpad +termcapinfo xterm* ti@:te@ + # Define the time that all windows monitored for silence should # wait before displaying a message. Default 30 seconds. silencewait 15 # default: 30 diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..3ba25a9 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,32 @@ +# HotPurpleTrafficLight theme for tmux to match btop + +# Status bar - dark background with purple accent +set -g status-style bg=colour235,fg=colour141 +set -g status-left-style bg=colour235,fg=colour141 +set -g status-right-style bg=colour235,fg=colour141 + +# Active window - yellow highlight +set-window-option -g window-status-current-style bg=colour235,fg=colour226,bold +set-window-option -g window-status-current-format " #I:#W#F " + +# Inactive windows - grey/white for contrast +set-window-option -g window-status-style bg=colour235,fg=colour250 +set-window-option -g window-status-format " #I:#W#F " + +# Pane borders - purple theme +set -g pane-border-style fg=colour54 +set -g pane-active-border-style fg=colour141,bold + +# Message and command styling - orange/red for alerts +set -g message-style bg=colour235,fg=colour208 +set -g message-command-style bg=colour235,fg=colour208 + +# Status bar content +set -g status-left '#[fg=colour141,bold] #S #[default]' +set -g status-right '#[fg=colour120]%H:%M #[fg=colour141]%d-%b-%y ' + +# Clock mode color +set-window-option -g clock-mode-colour colour141 + +# Enable mouse support +set -g mouse on \ No newline at end of file