Added watson config

This commit is contained in:
2025-05-03 16:47:58 -05:00
parent cf800e979c
commit f13d1d134a
15 changed files with 530 additions and 18 deletions
+290
View File
@@ -0,0 +1,290 @@
* {
font-family: "CaskaydiaMono Nerd Font", monospace;
font-weight: bold;
font-size: 16px;
color: rgba(65, 65, 65, 1);
}
window#waybar {
background-color: rgba(180, 180, 180, 0.5);
border: solid rgba(70, 70, 90, 0.90);
border-width: 2 0 2 0;
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.2;
}
#custom-os_button {
padding: 0 12px 0 7px;
font-size: 30px;
}
#custom-notification {
padding: 0 5px;
}
#custom-power {
background-color: lightgray;
border-radius: 100px;
margin: 5px 10px 5px 5px;
padding: 1px 1px 1px 6px;
}
.modules-left {
padding-right: 15px;
}
.modules-right {
padding-left: 15px;
}
#workspaces button label {
font-size: 20px;
color: rgba(65, 65, 65, 0.9);
padding: 0 10px 0 10px;
border: solid 2px transparent;
}
#workspaces button.empty label {
background: transparent;
border-color: transparent;
}
#workspaces button label {
background: white;
border-color: transparent;
}
#workspaces button.visible label {
color: black;
background: lightskyblue;
border: solid rgba(70, 70, 90, 1);
padding: 0 10px 0 10px;
border-width: 0 2px 0 2px;
}
.modules-left, .modules-right {
background: rgba(70, 70, 90, 0.20);
border: solid rgba(70, 70, 90, 0.95);
border-width: 2 2 2 0;
border-radius: 0 8px 8px 0;
}
.modules-right {
border-radius: 8px 0 0 8px;
border-width: 2 0 2 2;
}
/*
window#waybar.empty {
background-color: transparent;
}
window#waybar.solo {
background-color: #FFFFFF;
}
*/
window#waybar.termite {
background-color: #3F3F3F;
}
window#waybar.chromium {
background-color: #000000;
border: none;
}
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;
box-shadow: inset 0 -3px #ffffff;
}
/* you can set a style on hover for any module like this */
#custom-notification:hover,
#idle_inhibitor:hover,
#network:hover,
#clock:hover,
#pulseaudio:hover {
background-color: white;
}
#workspaces button {
padding: 0;
background-color: transparent;
color: #ffffff;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
}
#workspaces button.focused {
background-color: #64727D;
box-shadow: inset 0 -3px #ffffff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#mode {
background-color: #64727D;
box-shadow: inset 0 -3px #ffffff;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#mpd {
padding: 0 10px;
}
/* If workspaces is the leftmost module, omit left margin */
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
/* Using steps() instead of linear as a timing function to limit cpu usage */
#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 {
padding-right: 15px;
}
#power-profiles-daemon.performance {
background-color: #f53c3c;
color: #ffffff;
}
#power-profiles-daemon.balanced {
background-color: #2980b9;
color: #ffffff;
}
#power-profiles-daemon.power-saver {
background-color: #2ecc71;
color: #000000;
}
label:focus {
background-color: #000000;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#mpd {
background-color: #66cc99;
color: #2a5c45;
}
#mpd.disconnected {
background-color: #f53c3c;
}
#mpd.stopped {
background-color: #90b1b1;
}
#mpd.paused {
background-color: #51a37a;
}
#language {
background: #00b093;
color: #740864;
padding: 0 5px;
margin: 0 5px;
min-width: 16px;
}
#keyboard-state {
background: #97e1ad;
color: #000000;
padding: 0 0px;
margin: 0 5px;
min-width: 16px;
}
#keyboard-state > label {
padding: 0 5px;
}
#keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2);
}
#scratchpad {
background: rgba(0, 0, 0, 0.2);
}
#scratchpad.empty {
background-color: transparent;
}
#privacy {
padding: 0;
}
#privacy-item {
padding: 0 5px;
color: white;
}
#privacy-item.screenshare {
background-color: #cf5700;
}
#privacy-item.audio-in {
background-color: #1ca000;
}
#privacy-item.audio-out {
background-color: #0069d4;
}