summaryrefslogtreecommitdiff
path: root/.config/waybar/style.css
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-13 01:09:49 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-13 01:09:49 +0200
commit0438660003a5f3cbdb2dd8a42961e0c8629f80b9 (patch)
treee2829960bbb7f2cc5ef55d0c48ea3c781f1c4b79 /.config/waybar/style.css
parentdd397e6a4a9368117e2689904bb6bb8586d598e9 (diff)
waybar: Add waybar configuration
Diffstat (limited to '.config/waybar/style.css')
-rw-r--r--.config/waybar/style.css89
1 files changed, 89 insertions, 0 deletions
diff --git a/.config/waybar/style.css b/.config/waybar/style.css
new file mode 100644
index 0000000..7468468
--- /dev/null
+++ b/.config/waybar/style.css
@@ -0,0 +1,89 @@
+@keyframes blink {
+ to {
+ color: #FFF;
+ box-shadow: inset 0 -3px #FFF;
+ }
+}
+
+* {
+ font-family: "Iosevka Smooth";
+ font-size: 16px;
+}
+
+window#waybar {
+ background-color: rgba(43, 48, 59, 0.5);
+ border-bottom: 3px solid rgba(100, 114, 125, 0.5);
+ transition-property: background-color;
+ transition-duration: .5s;
+}
+
+button {
+ /* Use box-shadow instead of border so the text isn't offset */
+ box-shadow: inset 0 -3px transparent;
+ /* Avoid rounded borders under each button name */
+ border: none;
+ border-radius: 0;
+}
+
+button:hover {
+ background: inherit;
+}
+
+#workspaces {
+ margin: 0 4px;
+}
+
+/* If workspaces is the leftmost module, omit left margin */
+.modules-left > widget:first-child > #workspaces {
+ margin-left: 0;
+}
+
+/* If workspaces is the rightmost module, omit right margin */
+.modules-right > widget:last-child > #workspaces {
+ margin-right: 0;
+}
+
+#workspaces button {
+ color: #FFF;
+ padding: 0 5px;
+ background-color: transparent;
+}
+
+#workspaces button:hover {
+ background: rgba(0, 0, 0, 0.2);
+}
+
+#workspaces button.active {
+ background-color: rgba(0, 0, 0, 0.4);
+}
+
+#workspaces button.urgent {
+ background-color: #eb4d4b;
+}
+
+#backlight,
+#battery,
+#clock,
+#custom-disk,
+#custom-keyboard,
+#network,
+#wireplumber {
+ padding: 0 5px;
+ color: #FFF;
+}
+
+button:hover,
+#workspaces button.active {
+ color: #FFF;
+ box-shadow: inset 0 -3px #FAA14F;
+}
+
+#battery.critical:not(.charging) {
+ color: #F53C3C;
+ box-shadow: inset 0 -3px #F53C3C;
+ animation-name: blink;
+ animation-duration: 0.65s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}