fixed colors in polybar, added better tmux bind for copymode

This commit is contained in:
Daniel Fichtinger 2024-11-04 18:01:07 -05:00
parent 857f831cd9
commit 36628a2f29
2 changed files with 5 additions and 4 deletions

View file

@ -130,7 +130,7 @@ interval = 25
mount-0 = / 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 = %mountpoint% not mounted
label-unmounted-foreground = ${colors.disabled} label-unmounted-foreground = ${colors.disabled}
@ -179,17 +179,17 @@ interval = 5
format-connected = <label-connected> format-connected = <label-connected>
format-connected-foreground = ${colors.primary} format-connected-foreground = ${colors.primary}
format-disconnected = <label-disconnected> format-disconnected = <label-disconnected>
label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected label-disconnected = net down
[module/wlan] [module/wlan]
inherit = network-base inherit = network-base
interface-type = wireless interface-type = wireless
label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip% label-connected = wlan up
[module/eth] [module/eth]
inherit = network-base inherit = network-base
interface-type = wired interface-type = wired
label-connected = %{F#F0C674}%ifname%%{F-} %local_ip% label-connected = eth up
[module/date] [module/date]
type = internal/date type = internal/date

View file

@ -45,6 +45,7 @@ bind h split-window -h -c "#{pane_current_path}"
bind C-x kill-session bind C-x kill-session
bind S command-prompt -p "rename session:" "rename-session '%%'" bind S command-prompt -p "rename session:" "rename-session '%%'"
bind W command-prompt -p "rename window:" "rename-window '%%'" bind W command-prompt -p "rename window:" "rename-window '%%'"
bind - copy-mode
# Joining and sending # Joining and sending
bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'" bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"