Add some RICE
This commit is contained in:
parent
9e5ad4f304
commit
9960cd491a
4 changed files with 82 additions and 77 deletions
|
@ -1,11 +1,3 @@
|
|||
/* =============================================================================
|
||||
*
|
||||
* Waybar configuration
|
||||
*
|
||||
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
|
||||
*
|
||||
* =========================================================================== */
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* Keyframes
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
@ -55,22 +47,34 @@
|
|||
@define-color teal #8ec07c;
|
||||
@define-color gray #928374;
|
||||
|
||||
/* Reset all styles */
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
min-height: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
font-family: Inconsolata, Inconsolata Nerd Font, FiraCode Nerd Font Mono;
|
||||
font-weight: bold;
|
||||
font-size: 14pt;
|
||||
color: @light;
|
||||
border-radius: 20px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* The whole bar */
|
||||
#waybar {
|
||||
background: @dark;
|
||||
color: @light;
|
||||
font-family: Inconsolata, Inconsolata Nerd Font, FiraCode Nerd Font Mono;
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
/*-----module groups----*/
|
||||
.modules-right {
|
||||
padding: 3px;
|
||||
background-color: @dark;
|
||||
margin: 5px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.modules-center {
|
||||
padding: 3px;
|
||||
background-color: @dark;
|
||||
margin: 5px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.modules-left {
|
||||
padding: 3px;
|
||||
margin: 5px;
|
||||
background-color: @dark;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
/* All modules */
|
||||
|
@ -132,7 +136,6 @@
|
|||
animation-duration: 3s;
|
||||
}
|
||||
|
||||
/* And now modules themselves in their respective order */
|
||||
|
||||
/* Workspaces stuff */
|
||||
#workspaces button {
|
||||
|
@ -144,60 +147,14 @@
|
|||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
border-bottom: 2px solid @orange;
|
||||
border: 1px solid @orange;
|
||||
}
|
||||
|
||||
#workspaces button.visible:not(.focused) {
|
||||
border-bottom: 2px solid @gray;
|
||||
border: 1px solid @gray;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: @orange;
|
||||
}
|
||||
|
||||
#mode { /* Shows current Sway mode (resize etc.) */
|
||||
padding-left: 10px;
|
||||
color: @light;
|
||||
background: @red;
|
||||
}
|
||||
|
||||
#window {
|
||||
margin-right: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
border-bottom: 2px solid @red;
|
||||
}
|
||||
|
||||
#network {
|
||||
border-bottom: 2px solid @orange;
|
||||
}
|
||||
|
||||
#memory {
|
||||
border-bottom: 2px solid @yellow;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
border-bottom: 2px solid @green;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
border-bottom: 2px solid @teal;
|
||||
}
|
||||
|
||||
#battery {
|
||||
border-bottom: 2px solid @blue;
|
||||
}
|
||||
|
||||
#tray {
|
||||
}
|
||||
|
||||
#clock {
|
||||
border-bottom: 2px solid @light;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
/* No styles */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue