aboutsummaryrefslogtreecommitdiff
path: root/waybar/style.css
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2024-01-22 19:35:09 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2024-01-22 19:35:09 -0500
commit76196f760716990ee239a2455ce62b07425e0540 (patch)
tree078377431376608a623b09486f3445c7be3e1d8b /waybar/style.css
downloadrivercfg-76196f760716990ee239a2455ce62b07425e0540.tar.gz
rivercfg-76196f760716990ee239a2455ce62b07425e0540.tar.xz
Initial
Diffstat (limited to 'waybar/style.css')
-rw-r--r--waybar/style.css101
1 files changed, 101 insertions, 0 deletions
diff --git a/waybar/style.css b/waybar/style.css
new file mode 100644
index 0000000..58bae86
--- /dev/null
+++ b/waybar/style.css
@@ -0,0 +1,101 @@
+window.eDP-1 * { font-size: 18px; }
+
+* {
+ font-family: "IBM 3270";
+ font-size: 12px;
+}
+
+window#waybar {
+ background: none;
+ border-bottom: 3px solid #8FBCBB;
+}
+
+window#waybar.hidden {
+ opacity: 0.2;
+}
+
+#window {
+ color: #8FBCBB;
+ /* background: #2E3440; */
+}
+
+#tags {
+ /* background: #2e3440; */
+}
+
+#tags button {
+ /* transition: none; */
+ color: #4c566a;
+ background: transparent;
+ border-radius: 0px;
+}
+
+#tags button.occupied {
+ transition: none;
+ color: #a3be8c;
+ background: transparent;
+}
+
+#tags button.focused {
+ color: #81a1c1;
+ /* border-bottom: 3px solid #81a1c1; */
+ background: #4C566A;
+
+ border-radius: inherit;
+}
+
+#tags button:hover {
+ transition: none;
+ box-shadow: inherit;
+ text-shadow: inherit;
+ color: #81a1c1;
+}
+
+#temperature {
+ background: #2e3440;
+ color: #81A1C1;
+ /* border-bottom: 3px solid #6a7796; */
+}
+
+#pulseaudio {
+ color: #D08770;
+ background: #2E3440;
+ /* border-bottom: 3px solid #6a7796; */
+}
+
+#battery {
+ color: #A3BE8C;
+ background: #2E3440;
+ /* border-bottom: 3px solid #6a7796; */
+}
+
+#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage {
+ padding-left: 15px;
+}
+
+#battery.critical:not(.charging) {
+ background-color: #d8dee9;
+ color: #2e3440;
+ animation-name: blink;
+ animation-duration: 0.5s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}
+
+@keyframes blink {
+ to {
+ background-color: #bf616a;
+ color: #d8dee9;
+ }
+}
+
+#tray {
+ color: #d8dee9;
+ background: #2E3440;
+ /* border-bottom: 3px solid #6a7796; */
+}
+
+#tags button.focused, #battery, #pulseaudio {
+ border-bottom: 3px solid #8FBCBB;
+}