This commit is contained in:
coast 2025-09-26 00:07:01 +03:30
parent 354e44c321
commit a442414a9a
2 changed files with 54 additions and 36 deletions

View file

@ -1,7 +1,7 @@
// -*- mode: jsonc -*- // -*- mode: jsonc -*-
{ {
"layer": "top", "layer": "bottom",
"position": "top", "position": "bottom",
"height": 30, "height": 30,
"spacing": 4, "spacing": 4,
@ -10,10 +10,9 @@
"hyprland/workspaces", "hyprland/workspaces",
"hyprland/window", "hyprland/window",
], ],
"modules-center": [
],
"modules-right": [ "modules-right": [
"battery",
"cpu", "cpu",
"memory", "memory",
"disk", "disk",
@ -37,6 +36,7 @@
"7": "7", "7": "7",
"8": "8", "8": "8",
"9": "9", "9": "9",
"10": "10",
}, },
}, },
"hyprland/window" : { "hyprland/window" : {
@ -73,11 +73,10 @@
"warning": 30, "warning": 30,
"critical": 15 "critical": 15
}, },
"format": "Bat: {capacity}% {icon} {time}", "format": "BAT: {capacity}%{time}",
"format-plugged": "{capacity}% ", "format-plugged": "{capacity}% ",
"format-alt": "Bat {capacity}%", "format-alt": "Bat {capacity}%",
"format-time": "{H}:{M}", "format-time": "{H}:{M}",
"format-icons": ["", "", "", "", ""]
}, },
"network": { "network": {
"format": "Online", "format": "Online",

View file

@ -1,7 +1,7 @@
@define-color bg #1c1c1c; /* Dark grey */ @define-color bg #1c1c1c;
@define-color fg #d3d3d3; /* Light grey */ @define-color fg #B0B0B0;
@define-color blk #000000; /* Black */ @define-color blk #000000;
@define-color white #ffffff; /* White */ @define-color white #ffffff;
* { * {
font-family: "UbuntuMono", monospace; font-family: "UbuntuMono", monospace;
@ -9,6 +9,19 @@
font-weight: bold; font-weight: bold;
} }
button,
#workspaces button,
#clock,
#battery,
#cpu,
#memory,
#disk,
#network,
#tray {
transition-property: none;
animation: none;
}
window#waybar { window#waybar {
background-color: @bg; background-color: @bg;
color: @fg; color: @fg;
@ -16,29 +29,35 @@ window#waybar {
#workspaces button { #workspaces button {
padding: 0 6px; padding: 0 6px;
color: @fg; /* Light grey */ color: @fg;
background: transparent; background: transparent;
border-bottom: 3px solid @bg; border-bottom: 3px solid @bg;
} }
#workspaces button.active { #workspaces button.active {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 3px solid @fg; /* Light grey */ border-bottom: 3px solid @fg;
} }
#workspaces button.empty { #workspaces button.empty {
color: @fg; /* White */ color: @fg;
} }
#workspaces button.empty.active { #workspaces button.empty.active {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 3px solid @fg; /* Light grey */ border-bottom: 3px solid @fg;
} }
#workspaces button.urgent { #workspaces button.urgent {
background-color: @blk; /* Black */ background-color: @blk;
} }
button:hover { /* Disable hover effects completely */
background: inherit; button:hover,
box-shadow: inset 0 -3px @white; /* White */ #workspaces button:hover {
background: transparent;
box-shadow: none;
color: inherit;
} }
#clock, #clock,
@ -50,48 +69,48 @@ button:hover {
#network, #network,
#tray { #tray {
padding: 0 8px; padding: 0 8px;
color: @white; /* White */ color: @white;
} }
#custom-sep { #custom-sep {
color: @bg; /* Dark grey */ color: @fg;
} }
#clock { #clock {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#battery { #battery {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#disk { #disk {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#memory { #memory {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#cpu { #cpu {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#network { #network {
color: @fg; /* Light grey */ color: @fg;
border-bottom: 4px solid @fg; /* Light grey */ border-bottom: 4px solid @fg;
} }
#network.disconnected { #network.disconnected {
background-color: @blk; /* Black */ background-color: @blk;
} }
#tray { #tray {
background-color: @bg; /* Dark grey */ background-color: @bg;
} }