aboutsummaryrefslogtreecommitdiff
path: root/waybar-vert/dot-config/waybar/style.css
diff options
context:
space:
mode:
authorMohammad Reza Karimi <m.r.karimi.j@gmail.com>2026-02-23 15:03:10 -0500
committerMohammad Reza Karimi <m.r.karimi.j@gmail.com>2026-02-23 15:03:10 -0500
commit36a274dbc066068ff25b839e21ce3b82ec292c88 (patch)
tree7e3de8bafab79cfa86c93f467413b8f43273a8a5 /waybar-vert/dot-config/waybar/style.css
parentb29aab34dff6b76fd8eb067d51d2fe41be594616 (diff)
big updatesHEADmain
Diffstat (limited to 'waybar-vert/dot-config/waybar/style.css')
-rw-r--r--waybar-vert/dot-config/waybar/style.css161
1 files changed, 161 insertions, 0 deletions
diff --git a/waybar-vert/dot-config/waybar/style.css b/waybar-vert/dot-config/waybar/style.css
new file mode 100644
index 0000000..357f320
--- /dev/null
+++ b/waybar-vert/dot-config/waybar/style.css
@@ -0,0 +1,161 @@
+@import url("file:///home/moreka/.cache/wal/colors-waybar.css");
+@define-color transp alpha(@background, 0);
+@define-color effort2 alpha(@background, 0.8);
+@define-color border lighter(@background);
+@define-color shadow darker(@background);
+/* @define-color foreground #eeeeee; */
+
+* {
+ font-family: Dejavu Sans Mono, Vazirmatn UI;
+ font-size: 12px;
+ min-width: 0;
+}
+
+window#waybar {
+ background-color: @transp;
+ background-blend-mode: screen;
+ color: @foreground;
+}
+
+.modules-center {
+ background: @effort2;
+ background-blend-mode: overlay;
+ padding: 4px 2px;
+ margin: 0px 5px;
+ border-radius: 20px;
+ border: 2px solid @border;
+ box-shadow: 0px 0px 3px 4px @shadow;
+}
+
+tooltip {
+ background: #000000;
+ padding: 4px;
+}
+
+tooltip label {
+ color: white;
+ padding: 0;
+ margin: 0;
+}
+
+/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
+#workspaces button:hover {
+ background: inherit;
+}
+
+#workspaces button {
+ padding: 0px;
+ border: none;
+ border-radius: 40px;
+ background-color: transparent;
+ margin-bottom: 4px;
+}
+
+#workspaces:last-child {
+ margin-bottom: 0px;
+}
+
+#workspaces button label {
+ color: #bbbbbb;
+ font-size: 10px;
+ padding: 0px;
+ margin: 0px;
+}
+
+#workspaces button:hover {
+ background-color: rgba(0, 0, 0, 0.2);
+}
+
+
+#workspaces button.active.empty {
+ background-color: #005577;
+}
+
+#workspaces button.active:not(.empty) {
+ background-color: #005577;
+ /* border: 1px solid #0088aa; */
+}
+
+#workspaces button.active label {
+ font-weight: 900;
+ color: #eeeeee;
+}
+
+#workspaces button:not(.active):not(.empty) {
+ /* border: 1px solid #444444; */
+}
+
+
+#workspaces button.urgent {
+ background-color: #eb4d4b;
+}
+
+
+#clock,
+#battery,
+#cpu,
+#memory,
+#disk,
+#temperature,
+#backlight,
+#network,
+#pulseaudio,
+#wireplumber,
+#custom-media,
+#tray,
+#mode,
+#idle_inhibitor,
+#scratchpad,
+#power-profiles-daemon,
+#mpd {
+ padding: 5px 0px;
+}
+
+#clock {
+ font-weight: bold;
+ border-top: 1px solid #777777;
+ padding-top: 10px;
+}
+
+#window,
+#workspaces {
+ margin: 4px 0px;
+}
+
+@keyframes blink {
+ to {
+ background-color: #ffffff;
+ color: #000000;
+ }
+}
+
+#battery.critical:not(.charging) {
+ background-color: #f53c3c;
+ color: #ffffff;
+ animation-name: blink;
+ animation-duration: 0.5s;
+ animation-timing-function: steps(12);
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}
+
+#power-profiles-daemon.performance {
+ color: #f53c3c;
+}
+
+label:focus {
+ background-color: #000000;
+}
+
+#tray > .passive {
+ -gtk-icon-effect: dim;
+}
+
+#tray > .needs-attention {
+ -gtk-icon-effect: highlight;
+ background-color: #eb4d4b;
+}
+
+#idle_inhibitor.activated {
+ color: #f53c3c;
+}