182 lines
2.8 KiB
CSS
Executable File
182 lines
2.8 KiB
CSS
Executable File
/* =============================================================================
|
|
*
|
|
* Waybar configuration
|
|
*
|
|
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
|
|
*
|
|
* =========================================================================== */
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Base styles
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/* Reset all styles */
|
|
|
|
* {
|
|
color: #eceff4;
|
|
border: 0;
|
|
border-radius: 0;
|
|
padding: 0 0;
|
|
font-family:Symbols Nerd Font Mono;
|
|
font-size: 15px;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
padding-bottom:2px;
|
|
}
|
|
|
|
window#waybar {
|
|
background:rgba (0, 0, 0, 0.5);
|
|
border-radius: 0px 0px 0px 0px;
|
|
padding:20px;
|
|
margin:20px;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 2px 0px;
|
|
border-bottom: 2px;
|
|
color: #eceff4;
|
|
border-color: #d8dee9;
|
|
border-style: solid;
|
|
margin-top:2px;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
border-color: #81a1c1;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#idle_inhibitor,
|
|
#temperature,
|
|
#custom-changewaybar,
|
|
#custom-keyboard-layout,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#tray,
|
|
#window,
|
|
#custom-launcher,
|
|
#custom-power,
|
|
#custom-pacman,
|
|
#custom-network_traffic,
|
|
#custom-weather{
|
|
padding: 0 3px;
|
|
border-bottom: 2px;
|
|
border-style: solid;
|
|
}
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Module styles
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
|
|
#clock {
|
|
color:#a3be8c;
|
|
}
|
|
|
|
#backlight {
|
|
color: #ebcb8b;
|
|
}
|
|
|
|
#battery {
|
|
color: #d8dee9;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: #81a1c1;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
color: #4c566a;
|
|
background-color: #eceff4;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
background: #bf616a;
|
|
color: #eceff4;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#cpu {
|
|
color:#a3be8c ;
|
|
}
|
|
|
|
#memory {
|
|
color: #d3869b;
|
|
}
|
|
|
|
#network.disabled {
|
|
color:#bf616a;
|
|
}
|
|
|
|
#network{
|
|
color:#a3be8c;
|
|
}
|
|
|
|
#network.disconnected {
|
|
color: #bf616a;
|
|
}
|
|
|
|
#pulseaudio {
|
|
color: #b48ead;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #3b4252;
|
|
}
|
|
|
|
#temperature {
|
|
color: #8fbcbb;
|
|
}
|
|
|
|
#temperature.critical {
|
|
color: #bf616a;
|
|
}
|
|
|
|
#idle_inhibitor {
|
|
color: #ebcb8b;
|
|
}
|
|
|
|
#custom-changewaybar {
|
|
margin: 4px 10px;
|
|
padding: 0px 4px;
|
|
border-style: hidden;
|
|
}
|
|
|
|
|
|
#tray {
|
|
}
|
|
|
|
#custom-launcher,
|
|
#custom-power{
|
|
border-style: hidden;
|
|
margin-top:2px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
#custom-launcher{
|
|
/*color:#d08770;*/
|
|
}
|
|
|
|
|
|
#window{
|
|
border-style: hidden;
|
|
margin-top:1px;
|
|
}
|
|
#custom-keyboard-layout{
|
|
color:#d08770;
|
|
}
|
|
#custom-network_traffic{
|
|
color:#d08770;
|
|
}
|
|
|
|
|