diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-02-02 15:55:42 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-02-02 15:55:42 +0530 | 
| commit | 5055c72d26569d352b0273cd79544ece594763b2 (patch) | |
| tree | cc2b5744e67e9a8e9c4294d3a3e0a1769a61d83f /config/waybar/style.css | |
| parent | 4803f1aac7f36c45c392b50869cd91d097e413c9 (diff) | |
remove dwlb
Diffstat (limited to 'config/waybar/style.css')
| -rw-r--r-- | config/waybar/style.css | 110 | 
1 files changed, 110 insertions, 0 deletions
| diff --git a/config/waybar/style.css b/config/waybar/style.css new file mode 100644 index 0000000..1786ff9 --- /dev/null +++ b/config/waybar/style.css @@ -0,0 +1,110 @@ +* { +  font-family: UbuntuMono Nerd Font Mono; +  font-weight: 500; +  font-size: 16px; +} + +window#waybar { +  background-color: rgba(27, 27, 27, 1); +  color: #f2f0fa; +  transition-property: background-color; +  transition-duration: .5s; +} + +button { +  box-shadow: inset 0 -3px transparent; +  border: none; +  border-radius: 0px; +} + +#tags button { +  padding: 0px 15px; +  background-color: rgba(27, 27, 27, 1); +  color: #f2f0fa; +} + +#tags button.focused { +  background-color: rgba(242, 240, 250, 1); +  color: #272727; +} + +button:hover { +  background: inherit; +} + +#custom-launcher { +  margin: 0 10px; +  padding: 0 10px; +} + +#workspaces { +  border-radius: 10px; +  background-color: #f2f0fa; +  color: #272727; +  padding: 0 10px; +  margin: 0px 4px; +} + +#workspaces button { +  padding: 0 10px; +  color: #272727; +  background-color: #f2f0fa; +} + +#clock { +  padding: 0 10px; +  margin: 0 10px; +  color: #f2f0fa; +  border-radius: 0px; +} + +#battery, +#cpu, +#backlight { +  padding: 0 10px; +  margin: 0 0px; +  background-color: #f2f0fa; +  color: #272727; +} + +#battery { +  border-radius: 0px 10px 10px 0px; +} + +#cpu { +  border-radius: 10px 0px 0px 10px; +} + +#tray { +  padding: 0 10px; +  margin: 0 0px; +  border-radius: 10px; +  margin: 0 10px; +} + +#window { +  margin: 0 4px; +} + +/* If workspaces is the leftmost module, omit left margin */ +.modules-left > widget:first-child > #workspaces { +  margin-left: 0; +} + +#battery.critical:not(.charging) { +  background-color: #f53c3c; +  color: #ffffff; +} + +label:focus { +  background-color: #000000; +} + +#tray > .passive { +  -gtk-icon-effect: dim; +} + +#tray > .needs-attention { +  -gtk-icon-effect: highlight; +  background-color: #eb4d4b; +} | 
