waybar and tmux plugins
This commit is contained in:
parent
238d53fadd
commit
6bdaba63f5
6 changed files with 179 additions and 140 deletions
102
waybar/style.css
Normal file
102
waybar/style.css
Normal file
|
@ -0,0 +1,102 @@
|
|||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
font-family: RobotoMono Nerd Font;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: #282828;
|
||||
color: #ebdbb2;
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
border-bottom: solid 0px #3c3836;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
color: #ebdbb2;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background-color: #ebdbb2;
|
||||
color: #282828;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #cc241d;
|
||||
}
|
||||
|
||||
widget > * {
|
||||
margin-top: 6px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.modules-left > widget > * {
|
||||
margin-left: 12px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
||||
.modules-left > widget:first-child > * {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.modules-left > widget:last-child > * {
|
||||
margin-right: 18px;
|
||||
}
|
||||
|
||||
.modules-right > widget > * {
|
||||
padding: 0 12px;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
color: #282828;
|
||||
background-color: #ebdbb2;
|
||||
}
|
||||
|
||||
.modules-right > widget:first-child > * {
|
||||
border-radius: 5px 0 0 5px;
|
||||
}
|
||||
|
||||
.modules-right > widget:last-child > * {
|
||||
border-radius: 0 5px 5px 0;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background: transparent;
|
||||
color: #fb4934;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #ebdbb2;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
animation-name: blink;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
label:focus {
|
||||
background-color: #282828;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
border-radius: 5px;
|
||||
background: #504945;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: #ebdbb2;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue