From 36628a2f29973e5ba755a4231def60dd9da2753f Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Mon, 4 Nov 2024 18:01:07 -0500 Subject: [PATCH] fixed colors in polybar, added better tmux bind for copymode --- .config/polybar/config.ini | 8 ++++---- .config/tmux/tmux.conf | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini index b7cce8de..4483f094 100644 --- a/.config/polybar/config.ini +++ b/.config/polybar/config.ini @@ -130,7 +130,7 @@ interval = 25 mount-0 = / -label-mounted = %{F#F0C674}%mountpoint%%{F-} %percentage_used%% +label-mounted = %{F#d14848}%mountpoint%%{F-} %percentage_used%% label-unmounted = %mountpoint% not mounted label-unmounted-foreground = ${colors.disabled} @@ -179,17 +179,17 @@ interval = 5 format-connected = format-connected-foreground = ${colors.primary} format-disconnected = -label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected +label-disconnected = net down [module/wlan] inherit = network-base interface-type = wireless -label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip% +label-connected = wlan up [module/eth] inherit = network-base interface-type = wired -label-connected = %{F#F0C674}%ifname%%{F-} %local_ip% +label-connected = eth up [module/date] type = internal/date diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 3b348ab5..73454cfb 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -45,6 +45,7 @@ bind h split-window -h -c "#{pane_current_path}" bind C-x kill-session bind S command-prompt -p "rename session:" "rename-session '%%'" bind W command-prompt -p "rename window:" "rename-window '%%'" +bind - copy-mode # Joining and sending bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"