aboutsummaryrefslogtreecommitdiff
path: root/waybar/style.css
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2024-01-23 18:12:03 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2024-01-23 18:12:03 -0500
commitd931ceaf517fdec540d91fb9b363b5f2db65eb32 (patch)
tree1fe3a0728e286d861ee50179a240762b1f288f66 /waybar/style.css
parent980bfc3699855bb110bf581a54abc760b6ae3652 (diff)
downloadrivercfg-d931ceaf517fdec540d91fb9b363b5f2db65eb32.tar.gz
rivercfg-d931ceaf517fdec540d91fb9b363b5f2db65eb32.tar.xz
more tweaks to the fedora script. Aggressively remove padding and reduce font sizes
Diffstat (limited to 'waybar/style.css')
-rw-r--r--waybar/style.css48
1 files changed, 8 insertions, 40 deletions
diff --git a/waybar/style.css b/waybar/style.css
index 58bae86..02d009c 100644
--- a/waybar/style.css
+++ b/waybar/style.css
@@ -1,13 +1,16 @@
-window.eDP-1 * { font-size: 18px; }
+/* window.eDP-1 * { font-size: 18px; } */
* {
- font-family: "IBM 3270";
- font-size: 12px;
+ font-family: "curie";
+ font-size: 10px;
+
+ padding: 0px;
+ margin: 0px;
}
window#waybar {
- background: none;
- border-bottom: 3px solid #8FBCBB;
+ background: #2e3440;
+
}
window#waybar.hidden {
@@ -16,18 +19,14 @@ window#waybar.hidden {
#window {
color: #8FBCBB;
- /* background: #2E3440; */
}
#tags {
- /* background: #2e3440; */
}
#tags button {
- /* transition: none; */
color: #4c566a;
background: transparent;
- border-radius: 0px;
}
#tags button.occupied {
@@ -38,7 +37,6 @@ window#waybar.hidden {
#tags button.focused {
color: #81a1c1;
- /* border-bottom: 3px solid #81a1c1; */
background: #4C566A;
border-radius: inherit;
@@ -54,48 +52,18 @@ window#waybar.hidden {
#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;
-}