diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-08 11:47:36 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-08 11:47:36 +0530 | 
| commit | f0fb3c4d1559bc13aeb764e25aa0746f465560b0 (patch) | |
| tree | 63fc3145c091496193b0c0f2af81d655e1956d0a /config/waybar/style.css | |
| parent | ea128011e4c6a6e337ce36ab290da2ae028dcbd2 (diff) | |
add labwc
Diffstat (limited to 'config/waybar/style.css')
| -rw-r--r-- | config/waybar/style.css | 51 | 
1 files changed, 51 insertions, 0 deletions
| diff --git a/config/waybar/style.css b/config/waybar/style.css new file mode 100644 index 0000000..f016ace --- /dev/null +++ b/config/waybar/style.css @@ -0,0 +1,51 @@ +/* ----------------------------------------------------------------------------- + * Styles + * -------------------------------------------------------------------------- */ + +/* COLORS */ + +/* Nord */ +@define-color bg #191919; +@define-color light #212121; + +/* Reset all styles */ +* { +    border: none; +    border-radius: 0px; +    min-height: 0; +    font-family: "UbuntuMono Nerd Font Mono"; +    font-size: 14px; +    font-weight: bold; +    padding: 0; +} + +/* The whole bar */ +window#waybar { +    background: @bg; +    color: @light; +    border: 2px solid #191919; +} + +/* Each module */ +#clock, +#taskbar button, +#workspaces, +#tray, +#battery, +#pulseaudio, +#backlight { +    margin: 6px 6px 6px 0px; +    padding: 2px 8px; +    background: #212121; +    color: #9b9b9b +} + +#taskbar { +    padding: 0 6px; +} + +#window { +    margin-right: 40px; +    margin-left: 40px; +    font-weight: normal; +} | 
