Added Hypridle, Networkmanager, waybar
This commit is contained in:
145
config/waybar/style.css
Normal file
145
config/waybar/style.css
Normal file
@@ -0,0 +1,145 @@
|
||||
/* =============================================================================
|
||||
*
|
||||
* Waybar configuration
|
||||
*
|
||||
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
|
||||
*
|
||||
* =========================================================================== */
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Keyframes
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
@keyframes blink-warning {
|
||||
70% {
|
||||
color: white;
|
||||
}
|
||||
|
||||
to {
|
||||
color: white;
|
||||
background-color: orange;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blink-critical {
|
||||
70% {
|
||||
color: white;
|
||||
}
|
||||
|
||||
to {
|
||||
color: white;
|
||||
background-color: red;
|
||||
}
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Base styles
|
||||
* -------------------------------------------------------------------------- */
|
||||
/* Reset all styles */
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
min-height: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* The whole bar */
|
||||
#waybar {
|
||||
background: #000000;
|
||||
color: #eeeeee;
|
||||
font-family: Source Code Pro;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Each module */
|
||||
#clock,
|
||||
#cpu,
|
||||
#memory,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#wireplumber,
|
||||
#custom-separator,
|
||||
#tray {
|
||||
padding-left: 0px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Module styles
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
#clock {
|
||||
}
|
||||
|
||||
#wireplumber {
|
||||
color: #afd787;
|
||||
}
|
||||
|
||||
#wireplumber.muted {
|
||||
color: #d7af5f;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: #afd787;
|
||||
}
|
||||
|
||||
#cpu.warning {
|
||||
color: #d7af5f;
|
||||
}
|
||||
|
||||
#cpu.critical {
|
||||
color: #d75400;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: #afd787;
|
||||
}
|
||||
|
||||
#memory.warning {
|
||||
color: #d7af5f;
|
||||
}
|
||||
|
||||
#memory.critical {
|
||||
color: #d75400;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: #afd787;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
color: #d7af5f;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
color: #afd787;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #d75400;
|
||||
}
|
||||
|
||||
#custom-separator {
|
||||
color: #eeeeee;
|
||||
}
|
||||
|
||||
#tray {
|
||||
}
|
||||
|
||||
#window {
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
color: #eeeeee;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
background-color: #afd787;
|
||||
}
|
||||
Reference in New Issue
Block a user