Add bluetooth module and update color scheme

This commit is contained in:
floppydiskette 2024-04-15 15:25:26 +01:00
parent e4d98dd27c
commit 2716a9079f
Signed by: fwoppydwisk
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
2 changed files with 32 additions and 18 deletions

View file

@ -10,7 +10,7 @@
window#waybar { window#waybar {
background: rgba(43, 48, 59, 0.5); background: rgba(43, 48, 59, 0.5);
border-bottom: 3px solid rgba(100, 114, 125, 0.5); border-bottom: 3px solid rgba(100, 114, 125, 0.5);
color: #1e2030; color: #181825;
} }
window#waybar.hidden { window#waybar.hidden {
@ -20,14 +20,14 @@ window#waybar.hidden {
#workspaces button { #workspaces button {
padding: 0 5px; padding: 0 5px;
background: transparent; background: transparent;
color: #494d64; color: #45475a;
border-bottom: 3px solid transparent; border-bottom: 3px solid transparent;
} }
#workspaces button.active #workspaces button.active
#workspaces button.focused { #workspaces button.focused {
background-color: #939ab7; background-color: #9399b2;
border-bottom: 3px solid #494d64; border-bottom: 3px solid #45475a;
} }
#workspaces button.urgent { #workspaces button.urgent {
@ -39,13 +39,13 @@ window#waybar.hidden {
border-bottom: 3px solid #cad3f5; border-bottom: 3px solid #cad3f5;
} }
#custom-notification, #disk, #battery, #cpu, #memory, #temperature, #backlight, #network, #pulseaudio, #custom-media, #tray, #mode, #idle_inhibitor { #custom-notification, #disk, #battery, #cpu, #memory, #temperature, #backlight, #network, #pulseaudio, #custom-media, #tray, #mode, #idle_inhibitor, #bluetooth {
padding: 0 10px; padding: 0 10px;
margin: 0 2px; margin: 0 2px;
} }
#workspaces { #workspaces {
background-color: #cad3f5; background-color: #cdd6f4;
margin-right: 2px; margin-right: 2px;
padding: 0 10px; padding: 0 10px;
} }
@ -57,23 +57,23 @@ window#waybar.hidden {
} }
#battery { #battery {
background-color: #cad3f5; background-color: #cdd6f4;
} }
#battery.charging { #battery.charging {
color: #cad3f5; color: #cdd6f4;
background-color: #26A65B; background-color: #26A65B;
} }
@keyframes blink { @keyframes blink {
to { to {
background-color: #cad3f5; background-color: #cdd6f4;
} }
} }
#battery.critical:not(.charging) { #battery.critical:not(.charging) {
background: #f53c3c; background: #f53c3c;
color: #cad3f5; color: #cdd6f4;
animation-name: blink; animation-name: blink;
animation-duration: 0.5s; animation-duration: 0.5s;
animation-timing-function: linear; animation-timing-function: linear;
@ -82,11 +82,11 @@ window#waybar.hidden {
} }
#cpu { #cpu {
background: #a6da95; background: #a6e3a1;
} }
#memory { #memory {
background: #c6a0f6; background: #cba6f7;
} }
#backlight { #backlight {
@ -94,12 +94,16 @@ window#waybar.hidden {
} }
#network { #network {
background: #f5a97f; background: #fab387;
} }
#disk { #disk {
background: #2980b9; background: #2980b9;
color: #cad3f5; color: #cdd6f4;
}
#bluetooth {
background: #74c7ec;
} }
@ -108,7 +112,7 @@ window#waybar.hidden {
} }
#pulseaudio { #pulseaudio {
background: #eed49f; background: #f9e2af;
color: #000000; color: #000000;
} }
@ -152,7 +156,7 @@ window#waybar.hidden {
} }
#custom-notification { #custom-notification {
color: #1e2030; color: #181825;
background-color: #8bd5ca; background-color: #94e2d5;
} }
'' ''

View file

@ -17,6 +17,7 @@
"memory" "memory"
"pulseaudio" "pulseaudio"
"network" "network"
"bluetooth"
"clock" "clock"
]; ];
@ -155,6 +156,15 @@
format-alt = "{ifname}: {ipaddr}/{cidr}"; format-alt = "{ifname}: {ipaddr}/{cidr}";
}; };
"bluetooth" = {
format = " {status}";
format-disabled = "";
format-connected = " {num_connections} connected";
tooltip-format = "{controller_alias}\t{controller_address}";
tooltip-format-connected = "{controller_alias}\t{controller_address}\n\n{device_enumerate}";
tooltip-format-enumerate-connected = "{device_alias}\t{device_address}";
};
"pulseaudio" = { "pulseaudio" = {
on-click = "pavucontrol"; on-click = "pavucontrol";
format = "{icon}{volume}%"; format = "{icon}{volume}%";