summaryrefslogtreecommitdiff
path: root/hosts/local/fw11/waybarstyle.css
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/local/fw11/waybarstyle.css')
-rw-r--r--hosts/local/fw11/waybarstyle.css103
1 files changed, 103 insertions, 0 deletions
diff --git a/hosts/local/fw11/waybarstyle.css b/hosts/local/fw11/waybarstyle.css
new file mode 100644
index 0000000..97e65e2
--- /dev/null
+++ b/hosts/local/fw11/waybarstyle.css
@@ -0,0 +1,103 @@
+* {
+ border: none;
+ border-radius: 0;
+ font-family: "Ubuntu Nerd Font";
+ font-size: 13px;
+ min-height: 0;
+}
+
+window#waybar {
+ background: transparent;
+ color: white;
+}
+
+#window {
+ margin-left: 1rem;
+ font-weight: bold;
+ font-family: "Ubuntu";
+}
+/*
+#workspaces {
+ padding: 0 5px;
+}
+*/
+
+#workspaces button {
+ padding: 0 5px;
+ background: transparent;
+ color: white;
+ border-top: 2px solid transparent;
+}
+
+#workspaces button.focused {
+ color: #c9545d;
+ border-top: 2px solid #c9545d;
+}
+
+#mode {
+ background: #64727D;
+ border-bottom: 3px solid white;
+}
+
+#bluetooth, #idle_inhibitor, #temperature, #backlight, #clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode {
+ padding: 5px;
+ margin: 2px;
+ border-radius: 3rem;
+ background-color: rgb(10, 10, 10);
+}
+
+#clock {
+ font-weight: bold;
+}
+
+#battery {
+}
+
+#battery icon {
+ color: red;
+}
+
+#battery.charging {
+}
+
+@keyframes blink {
+ to {
+ background-color: #ffffff;
+ color: black;
+ }
+}
+
+#battery.warning:not(.charging) {
+ color: white;
+ animation-name: blink;
+ animation-duration: 0.5s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}
+
+#cpu {
+}
+
+#memory {
+}
+
+#network {
+}
+
+#network.disconnected {
+ background: #f53c3c;
+}
+
+#pulseaudio {
+}
+
+#pulseaudio.muted {
+}
+
+#custom-spotify {
+ color: rgb(102, 220, 105);
+}
+
+#tray {
+}