more waybar touching

This commit is contained in:
autumn
2025-08-25 18:46:05 -06:00
parent d762cb13d8
commit 350eeaf3ab

View File

@@ -19,6 +19,7 @@
# Module layout # Module layout
# #
modules-center = [ modules-center = [
"river/mode"
"river/window" "river/window"
]; ];
modules-right = [ modules-right = [
@@ -153,162 +154,159 @@
background: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.2);
} }
#workspaces button.focused { #workspaces button.focused {
background-color: #8f2fef; background-color: #8f2fef;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #ffffff;
} }
#workspaces button.urgent { #workspaces button.urgent {
background-color: #f38ba8; background-color: #f38ba8;
} }
#backlight, #backlight,
#battery, #battery,
#clock, #clock,
#cpu, #cpu,
#memory, #memory,
#mode, #mode,
#network, #network,
#pulseaudio, #pulseaudio,
#temperature, #temperature,
#tray, #tray,
#idle_inhibitor, #idle_inhibitor,
#keyboard-state, #keyboard-state,
#power-profiles-daemon { #power-profiles-daemon {
padding: 0 8px; padding: 0 8px;
} }
#window, #window,
#workspaces { #workspaces {
margin: 0 8px; margin: 0 8px;
} }
.modules-left>widget:first-child>#workspaces { .modules-left>widget:first-child>#workspaces {
margin-left: 0; margin-left: 0;
} }
.modules-right>widget:last-child>#workspaces { .modules-right>widget:last-child>#workspaces {
margin-right: 0; margin-right: 0;
} }
#backlight { #backlight {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #cba6f7; border-bottom: 3px solid #cba6f7;
} }
#battery { #battery {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #a6e3a1; border-bottom: 3px solid #a6e3a1;
} }
#battery.critical.discharging { #battery.critical.discharging {
background-color: #f38ba8; background-color: #f38ba8;
animation: blink 1s infinite; animation: blink 1s infinite;
} }
#battery.warning.discharging { #battery.warning.discharging {
background-color: #f9e2af; background-color: #f9e2af;
animation: blink 1s infinite; animation: blink 1s infinite;
} }
@keyframes blink { @keyframes blink {
to { to {
background-color: transparent; background-color: transparent;
} }
} }
#clock { #clock {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #a6e3a1; border-bottom: 3px solid #a6e3a1;
} }
#cpu { #cpu {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #cba6f7; border-bottom: 3px solid #cba6f7;
} }
#memory { #memory {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #f9e2af; border-bottom: 3px solid #f9e2af;
} }
#mode { #mode {
color: #ffffff; color: #ffffff;
background-color: #8f2fef; background-color: #8f2fef;
border-bottom: 3px solid #ffffff; border-bottom: 3px solid #ffffff;
} }
#network { #network {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #a6e3a1; border-bottom: 3px solid #a6e3a1;
} }
#network.disconnected { #network.disconnected {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #f38ba8; border-bottom: 3px solid #f38ba8;
} }
#pulseaudio { #pulseaudio {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #a6e3a1; border-bottom: 3px solid #a6e3a1;
} }
#pulseaudio.muted { #pulseaudio.muted {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #f38ba8; border-bottom: 3px solid #f38ba8;
} }
#temperature { #temperature {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #a6e3a1; border-bottom: 3px solid #a6e3a1;
} }
#temperature.critical { #temperature.critical {
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #f38ba8; border-bottom: 3px solid #f38ba8;
} }
#tray { #tray {
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #8f2fef; border-bottom: 3px solid #8f2fef;
} }
#idle_inhibitor { #idle_inhibitor {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #f9e2af; border-bottom: 3px solid #f9e2af;
} }
#idle_inhibitor.activated { #idle_inhibitor.activated {
color: #1e3b28; color: #1e3b28;
background-color: #f9e2af; background-color: #f9e2af;
border-bottom: 3px solid #f9e2af; border-bottom: 3px solid #f9e2af;
} }
#keyboard-state { #keyboard-state {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #fab387; border-bottom: 3px solid #fab387;
} }
#power-profiles-daemon { #power-profiles-daemon {
color: #ffffff; color: #ffffff;
background-color: transparent; background-color: transparent;
border-bottom: 3px solid #94e2d5; border-bottom: 3px solid #94e2d5;
} }
''; '';
}; };
} }