mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-06-23 23:39:24 -04:00
Add waybar
This commit is contained in:
parent
e0c17f71e2
commit
1ff2d77058
19 changed files with 1043 additions and 0 deletions
242
dot_config/waybar/style.css
Normal file
242
dot_config/waybar/style.css
Normal file
|
@ -0,0 +1,242 @@
|
|||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
font-family: Lexend, FiraCode Nerd Font, "M PLUS 1", Noto Sans CJK JP;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(24, 25, 38, 0.0);
|
||||
color: white;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: rgba(24, 25, 38, 0.95);
|
||||
border-radius: 5px;
|
||||
border-width: 0px;
|
||||
border-style: solid;
|
||||
border-color: rgb(24, 25, 38);
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-center,
|
||||
.modules-right,
|
||||
#mpdris {
|
||||
background-color: #1e2030;
|
||||
margin: 2px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-center,
|
||||
.modules-right,
|
||||
#clock,
|
||||
#visualisation,
|
||||
#mpdris,
|
||||
#custom-updates,
|
||||
#layout,
|
||||
#custom-notification.notification
|
||||
{
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
#tray,
|
||||
widget>label {
|
||||
padding: 0px 8px;
|
||||
}
|
||||
|
||||
#mpdris {
|
||||
color: #f4dbd6;
|
||||
}
|
||||
|
||||
#visualisation
|
||||
{
|
||||
color: #1e2030;
|
||||
background-color: #f4dbd6;
|
||||
}
|
||||
|
||||
#layout {
|
||||
color: #f4dbd6;
|
||||
}
|
||||
|
||||
|
||||
#layout.focused {
|
||||
margin-right: 2px;
|
||||
color: #1e2030;
|
||||
background-color: #f4dbd6;
|
||||
}
|
||||
|
||||
#tags button {
|
||||
color: #939ab7;
|
||||
margin-right: 2px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#tags button.occupied {
|
||||
color: #f4dbd6;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: #f4dbd6;
|
||||
margin-right: 2px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#workspaces button.empty,
|
||||
#workspaces.sway button.persistent {
|
||||
color: #939ab7;
|
||||
}
|
||||
|
||||
#workspaces button.empty.active {
|
||||
background-color: #939ab7;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #0f0f0f;
|
||||
background-color: #9ec3c4;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
background-color: rgba(244, 219, 214, 0.7);
|
||||
color: #0f0f0f;
|
||||
}
|
||||
|
||||
#workspaces.sway button.persistent:hover,
|
||||
#workspaces button.empty:hover {
|
||||
background-color: rgba(147, 154, 183, 0.7);
|
||||
color: #0f0f0f;
|
||||
}
|
||||
|
||||
#workspaces button.active,
|
||||
#workspaces button.focused,
|
||||
#tags button.focused {
|
||||
color: #0f0f0f;
|
||||
background-color: #f4dbd6;
|
||||
}
|
||||
|
||||
|
||||
#mpris {
|
||||
font-size: 7px;
|
||||
}
|
||||
|
||||
#custom-notification {
|
||||
color: #eb6f92;
|
||||
padding-left: 12px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
#custom-notification.notification {
|
||||
color: #0f0f0f;
|
||||
background-color: #eb6f92;
|
||||
}
|
||||
|
||||
#taskbar button {
|
||||
margin: 0px 2px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-left: 10px;
|
||||
padding-right: 8px;
|
||||
border-radius: 4px;
|
||||
background-color: #363a4f;
|
||||
transition-duration: 150ms;
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
background-color: #494d64;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#taskbar button.maximized,
|
||||
#taskbar button.fullscreen {
|
||||
border-bottom: 3px solid #8aadf4;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
background-color: #5b6078;
|
||||
border-radius: 4px;
|
||||
border-bottom: 3px solid #b7bdf8;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: #1e2030;
|
||||
background-color: #8aadf4;
|
||||
}
|
||||
|
||||
#custom-updates {
|
||||
margin-right: 2px;
|
||||
color: #1e2030;
|
||||
background-color: #9ccfd8;
|
||||
}
|
||||
|
||||
#custom-downloads {
|
||||
color: #eed49f;
|
||||
}
|
||||
|
||||
#custom-logo {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: #f5a97f;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: #a6da95;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #7dc4e4;
|
||||
}
|
||||
|
||||
#pulseaudio.bluetooth {
|
||||
color: #8aadf4;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: #ed8796;
|
||||
}
|
||||
|
||||
#pulseaudio-slider {
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
#pulseaudio-slider slider {
|
||||
min-height: 0px;
|
||||
min-width: 0px;
|
||||
border-radius: 20px;
|
||||
opacity: 0;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#pulseaudio-slider trough {
|
||||
min-height: 4px;
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #363a4f;
|
||||
}
|
||||
|
||||
#pulseaudio-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #91d7e3;
|
||||
}
|
||||
|
||||
#cava {
|
||||
font-family: FiraCode Nerd Font Mono;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: #b7bdf8;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
color: #91d7e3;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #ed8796;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue