Waybar: add catppuccin-style config + fonts
This commit is contained in:
@@ -1,8 +1,13 @@
|
|||||||
{
|
{
|
||||||
"layer": "top",
|
"layer": "top",
|
||||||
"position": "top",
|
"position": "top",
|
||||||
"height": 30,
|
"height": 32,
|
||||||
"modules-left": ["niri/workspaces"],
|
|
||||||
|
"modules-left": ["wlr/workspaces"],
|
||||||
"modules-center": ["clock"],
|
"modules-center": ["clock"],
|
||||||
"modules-right": ["pulseaudio", "network", "tray"]
|
"modules-right": ["pulseaudio", "network", "tray"],
|
||||||
|
|
||||||
|
"clock": { "format": "{:%a %d %b %H:%M}" },
|
||||||
|
"pulseaudio": { "format": " {volume}%" },
|
||||||
|
"network": { "format-wifi": " {signalStrength}%", "format-ethernet": "", "format-disconnected": "" }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,43 @@
|
|||||||
* { font-size: 14px; }
|
@define-color base #24273a;
|
||||||
|
@define-color mantle #1e2030;
|
||||||
|
@define-color text #cad3f5;
|
||||||
|
@define-color blue #8aadf4;
|
||||||
|
@define-color green #a6da95;
|
||||||
|
@define-color red #ed8796;
|
||||||
|
@define-color overlay0 #6e738d;
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: "JetBrainsMono Nerd Font", "Font Awesome 6 Free", sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: @theme_bg_color;
|
background: @mantle;
|
||||||
color: @theme_fg_color;
|
color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 6px 4px;
|
||||||
|
background: transparent;
|
||||||
|
color: @overlay0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
background: @theme_selected_bg_color;
|
background: @blue;
|
||||||
color: @theme_selected_fg_color;
|
color: @base;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#pulseaudio,
|
||||||
|
#network,
|
||||||
|
#tray {
|
||||||
|
padding: 0 12px;
|
||||||
|
margin: 6px 4px;
|
||||||
|
background: @base;
|
||||||
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user