Initial commit
This commit is contained in:
commit
cd2608926c
9 changed files with 1105 additions and 0 deletions
175
dot_config/waybar/style.css
Normal file
175
dot_config/waybar/style.css
Normal file
|
@ -0,0 +1,175 @@
|
|||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
/* `otf-font-awesome` is required to be installed for icons */
|
||||
font-family: Cozette, monospace;
|
||||
font-size: 11px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: #004043;
|
||||
border-bottom: 3px solid #004043;
|
||||
color: #069993;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
/*
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
window#waybar.solo {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
*/
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
background-color: #004043;
|
||||
color: #069993;
|
||||
border-bottom: 3px solid #004043;
|
||||
}
|
||||
|
||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
||||
#workspaces button:hover {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
box-shadow: inherit;
|
||||
border-bottom: 3px solid #ffffff;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #004043;
|
||||
color: navy;
|
||||
border-bottom: 3px solid #004043;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background-color: #004043;
|
||||
border-bottom: 3px solid #004043;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#temperature,
|
||||
#backlight,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#custom-media,
|
||||
#tray,
|
||||
#mode,
|
||||
#idle_inhibitor,
|
||||
#mpd {
|
||||
padding: 0 10px;
|
||||
margin: 0 4px;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#clock {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: #ffffff;
|
||||
background-color: #26A65B;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background-color: #f53c3c;
|
||||
color: #ffffff;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
label:focus {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#memory {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#idle_inhibitor.activated {
|
||||
background-color: #004043;
|
||||
color: #fff;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue