2023-12-18 08:15:18 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Catppuccin Mocha palette
|
|
|
|
* Maintainer: rubyowo
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
@define-color base #1e1e2e;
|
|
|
|
@define-color mantle #181825;
|
|
|
|
@define-color crust #11111b;
|
|
|
|
|
|
|
|
@define-color text #cdd6f4;
|
|
|
|
@define-color subtext0 #a6adc8;
|
|
|
|
@define-color subtext1 #bac2de;
|
|
|
|
|
|
|
|
@define-color surface0 #313244;
|
|
|
|
@define-color surface1 #45475a;
|
|
|
|
@define-color surface2 #585b70;
|
|
|
|
|
|
|
|
@define-color overlay0 #6c7086;
|
|
|
|
@define-color overlay1 #7f849c;
|
|
|
|
@define-color overlay2 #9399b2;
|
|
|
|
|
|
|
|
@define-color blue #89b4fa;
|
|
|
|
@define-color lavender #b4befe;
|
|
|
|
@define-color sapphire #74c7ec;
|
|
|
|
@define-color sky #89dceb;
|
|
|
|
@define-color teal #94e2d5;
|
|
|
|
@define-color green #a6e3a1;
|
|
|
|
@define-color yellow #f9e2af;
|
|
|
|
@define-color peach #fab387;
|
|
|
|
@define-color maroon #eba0ac;
|
|
|
|
@define-color red #f38ba8;
|
|
|
|
@define-color mauve #cba6f7;
|
|
|
|
@define-color pink #f5c2e7;
|
|
|
|
@define-color flamingo #f2cdcd;
|
|
|
|
@define-color rosewater #f5e0dc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Personal waybar config follows
|
|
|
|
*/
|
|
|
|
|
2023-11-12 13:24:09 +00:00
|
|
|
* {
|
2023-12-17 17:42:52 +00:00
|
|
|
font-family: "FiraMono Nerd Font";
|
|
|
|
font-size: 16px;
|
2023-11-12 13:24:09 +00:00
|
|
|
}
|
2023-10-17 08:15:52 +01:00
|
|
|
|
2023-12-17 17:42:52 +00:00
|
|
|
window {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2023-07-10 11:24:42 +01:00
|
|
|
|
2023-07-13 13:49:51 +01:00
|
|
|
window > box {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @text;
|
|
|
|
background: alpha(@base, 0.5);
|
2023-12-17 17:42:52 +00:00
|
|
|
box-shadow:
|
2023-12-18 08:15:18 +00:00
|
|
|
inset 0 0 0 1px alpha(@lavender, 0.1),
|
|
|
|
0 0 0 1px alpha(@base, 0.5);
|
2023-12-17 17:42:52 +00:00
|
|
|
margin: 10px 10px 0px;
|
|
|
|
padding: 0px;
|
2023-12-18 08:15:18 +00:00
|
|
|
border: 1px solid @lavender;
|
2023-12-17 17:42:52 +00:00
|
|
|
border-radius: 10px;
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|
|
|
|
|
2023-10-17 08:15:52 +01:00
|
|
|
tooltip {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @text;
|
2023-12-17 17:42:52 +00:00
|
|
|
/* Temp set alpha to 1.0 until I can sort out blurls issue */
|
2023-12-18 08:15:18 +00:00
|
|
|
background: alpha(@base, 1);
|
2023-12-17 17:42:52 +00:00
|
|
|
box-shadow:
|
2023-12-18 08:15:18 +00:00
|
|
|
inset 0 0 0 1px alpha(@lavender, 0.1),
|
|
|
|
0 0 0 1px alpha(@base, 0.5);
|
|
|
|
border: 1px solid @lavender;
|
2023-12-17 17:42:52 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0px;
|
2023-10-17 08:15:52 +01:00
|
|
|
}
|
2023-07-13 12:41:00 +01:00
|
|
|
|
|
|
|
#workspaces,
|
2023-11-13 11:15:54 +00:00
|
|
|
#window,
|
2023-11-05 07:26:32 +00:00
|
|
|
#mpris,
|
|
|
|
#pulseaudio,
|
|
|
|
#battery,
|
2023-11-04 12:00:40 +00:00
|
|
|
#disk,
|
2023-07-13 12:41:00 +01:00
|
|
|
#cpu,
|
|
|
|
#memory,
|
|
|
|
#temperature,
|
|
|
|
#clock,
|
|
|
|
#tray {
|
2023-12-17 17:42:52 +00:00
|
|
|
margin: 0px;
|
|
|
|
padding: 1px 5px;
|
2023-10-17 08:15:52 +01:00
|
|
|
}
|
|
|
|
|
2023-11-05 07:26:32 +00:00
|
|
|
#workspaces,
|
2023-11-13 11:15:54 +00:00
|
|
|
#window,
|
2023-11-05 07:26:32 +00:00
|
|
|
#mpris,
|
2023-12-17 17:42:52 +00:00
|
|
|
#tray {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @text;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
2023-11-05 07:26:32 +00:00
|
|
|
|
2023-10-22 12:58:15 +01:00
|
|
|
#workspaces button {
|
2023-12-17 17:42:52 +00:00
|
|
|
background: transparent;
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @text;
|
2023-12-17 17:42:52 +00:00
|
|
|
margin: 0px;
|
|
|
|
padding: 0px 5px;
|
|
|
|
}
|
|
|
|
#workspaces button.empty {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @surface2;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
|
|
|
#workspaces button.active {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @lavender;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
|
|
|
#workspaces button.urgent {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @red;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
2023-10-17 08:15:52 +01:00
|
|
|
|
2023-12-18 08:34:16 +00:00
|
|
|
#battery {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @red;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
2023-12-18 08:34:16 +00:00
|
|
|
#pulseaudio {
|
|
|
|
color: @peach;
|
|
|
|
}
|
2023-12-17 17:42:52 +00:00
|
|
|
#disk {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @yellow;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
|
|
|
#cpu {
|
2023-12-18 08:15:18 +00:00
|
|
|
color: @green;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
|
|
|
#memory {
|
2023-12-18 08:34:16 +00:00
|
|
|
color: @sapphire;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|
2023-12-17 17:52:14 +00:00
|
|
|
#clock {
|
2023-12-18 08:34:16 +00:00
|
|
|
color: @mauve;
|
2023-12-17 17:42:52 +00:00
|
|
|
}
|