196 lines
3.2 KiB
CSS
196 lines
3.2 KiB
CSS
/* =============================================================================
|
|
*
|
|
* Waybar configuration
|
|
*
|
|
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
|
|
*
|
|
* =========================================================================== */
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Keyframes
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
|
|
/*
|
|
Polar Night
|
|
nord0 #2e3440
|
|
nord1 #3b4252
|
|
nord2 #434c5e
|
|
nord3 #4c566a
|
|
Snow Storm
|
|
nord4 #d8dee9
|
|
nord5 #e5e9f0
|
|
nord6 #eceff4
|
|
Frost
|
|
nord7 #8fbcbb
|
|
nord8 #88c0d0
|
|
nord9 #81a1c1
|
|
nord10 #5e81ac
|
|
Aurora
|
|
nord11 #bf616a
|
|
nord12 #d08770
|
|
nord13 #ebcb8b
|
|
nord14 #a3be8c
|
|
nord15 #b48ead
|
|
*/
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
* Base styles
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/* Reset all styles */
|
|
|
|
* {
|
|
color: #eceff4;
|
|
border: 0;
|
|
border-radius: 0;
|
|
padding: 0 0;
|
|
font-family:Noto Sans;
|
|
font-size: 12px;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
padding-bottom:3px;
|
|
}
|
|
|
|
window#waybar {
|
|
/* background:#2e3440;*/
|
|
background:rgba(33, 33, 33, 0.8);
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 2px 0px;
|
|
border-bottom: 2px;
|
|
color: #eceff4;
|
|
border-color: #d8dee9;
|
|
border-style: solid;
|
|
margin-top:2px;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
border-color: #81a1c1;
|
|
}
|
|
|
|
#mode {
|
|
color: #ebcb8b;
|
|
}
|
|
|
|
#clock, #battery, #cpu, #memory,#idle_inhibitor, #temperature,#custom-keyboard-layout, #backlight, #network, #pulseaudio, #mode, #tray, #window,#custom-launcher,#custom-power,#custom-pacman {
|
|
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;
|
|
}
|
|
|
|
#tray {
|
|
}
|
|
|
|
#custom-launcher,#custom-power,#custom-archlinuxlogout{
|
|
border-style: hidden;
|
|
margin-top:2px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
#custom-archlinuxlogout{
|
|
border-style: hidden;
|
|
margin-top:2px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
#custom-keybindings{
|
|
border-style: hidden;
|
|
margin-top:2px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
#window{
|
|
border-style: hidden;
|
|
margin-top:1px;
|
|
}
|
|
#mode{
|
|
margin-bottom:3px;
|
|
}
|
|
|
|
#custom-keyboard-layout{
|
|
color:#d08770;
|
|
}
|
|
|
|
|
|
|