This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/sway/.config/waybar/style.css

203 lines
2.8 KiB
CSS
Raw Normal View History

2019-10-16 02:28:41 +02:00
* {
2019-12-09 19:25:42 +01:00
font: 14px Inter;
font-weight:bold;
/* border: none; */
border-radius:0;
margin:0;
padding: 0;
transition-duration:0;
/* font-size: ; */
/* min-height: 0; */
2019-10-16 02:28:41 +02:00
}
window#waybar {
2019-11-23 18:35:46 +01:00
background-color: #202020;
2019-12-03 04:38:10 +01:00
border-bottom: 2px solid #191919;
2019-10-16 02:28:41 +02:00
}
window#waybar.empty {
2019-10-17 15:01:01 +02:00
background-color: transparent;
2019-10-16 02:28:41 +02:00
border:none;
}
#workspaces button {
background-color: transparent;
2019-12-09 19:25:42 +01:00
border: 3px solid transparent;
color: #aaaaaa;
2019-10-16 02:28:41 +02:00
}
2019-12-09 19:25:42 +01:00
/*
2019-10-16 02:28:41 +02:00
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
border-top: 1px solid white;
}
2019-12-09 19:25:42 +01:00
*/
2019-10-16 02:28:41 +02:00
#workspaces button.focused {
2019-12-09 19:25:42 +01:00
/* padding: 0 2px; */
/* background-color: rgba(255,255,255,.01); */
2019-10-16 02:28:41 +02:00
border-top: 3px solid #cc5757;
2019-12-09 19:25:42 +01:00
border-bottom: 3px solid transparent;
color: #ffffff;
2019-10-16 02:28:41 +02:00
}
#workspaces button.urgent {
border-top: 3px solid #eb4deb;
}
/*Window Title*/
#window{
2019-12-09 19:25:42 +01:00
color:#aaa;
margin:0 4px;
/* width:15px; */
2019-10-16 02:28:41 +02:00
}
2019-12-09 19:25:42 +01:00
#mpd,
#tray
2019-10-16 02:28:41 +02:00
#clock,
2019-12-09 19:25:42 +01:00
#network,
2019-10-16 02:28:41 +02:00
#battery,
#backlight,
#pulseaudio,
2019-11-23 02:23:15 +01:00
#custom-mail,
2019-12-02 19:57:45 +01:00
#custom-updates,
2019-12-09 19:25:42 +01:00
#custom-weather
{
margin: 0 7px;
2019-10-16 02:28:41 +02:00
color: #ffffff;
2019-12-09 19:25:42 +01:00
opacity:.7;
2019-10-16 02:28:41 +02:00
}
2019-12-09 19:25:42 +01:00
#mpd,
#window,
#workspaces
{
font-weight:normal;
2019-10-16 02:28:41 +02:00
}
2019-12-09 19:25:42 +01:00
#tray
{
margin-right:7px;
2019-10-16 02:28:41 +02:00
}
2019-12-09 19:25:42 +01:00
/*
label:focus {
border-top: 2px solid #000000;
background-color: #000000;
2019-10-16 02:28:41 +02:00
}
@keyframes blink {
to {
border-top: 2px solid #ffffff;
color: #000000;
}
}
2019-12-09 19:25:42 +01:00
#battery {
border-top: 2px solid #ffffff;
}
#battery.charging {
border-top: 2px solid #26A65B;
color: #ffffff;
}
2019-10-16 02:28:41 +02:00
#battery.critical:not(.charging) {
background-color: #f53c3c;
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#network {
border-top: 2px solid #66cc99;
}
#network.disconnected {
border-top: 2px solid #f53c3c;
}
#pulseaudio {
border-top: 2px solid #f1c40f;
}
#pulseaudio.muted {
border-top: 2px solid #90b1b1;
}
#custom-weather {
border-top: 2px solid #2980b9;
}
2019-11-23 02:23:15 +01:00
#custom-mail {
border-top: 2px solid #67334d;
}
2019-12-02 19:57:45 +01:00
#custom-updates {
border-top: 2px solid #ee9957;
}
2019-12-05 15:28:02 +01:00
2019-10-16 02:28:41 +02:00
#tray {
border-top: 2px solid #2980b9;
}
#mpd {
border-top: 2px solid #66cc99;
}
#mpd.disconnected {
border-top: 2px solid #f53c3c;
}
#mpd.stopped {
border-top: 2px solid #90b1b1;
}
2019-12-09 19:25:42 +01:00
*/
2019-10-16 02:28:41 +02:00
#mpd.paused {
font-size: 0;
border: none;
}
2019-12-09 19:25:42 +01:00
#custom-recording {
/* border-top: 2px solid #ee9957; */
color: #ee4040;
}
2019-10-16 02:28:41 +02:00
/*
* UNUSED
*
#idle_inhibitor {
background-color: #2d3436;
}
#idle_inhibitor.activated {
background-color: #ecf0f1;
color: #2d3436;
}
#temperature {
background-color: #f0932b;
}
#temperature.critical {
background-color: #eb4d4b;
}
#cpu {
background-color: #2ecc71;
color: #000000;
}
#memory {
background-color: #9b59b6;
}
#backlight {
background-color: #90b1b1;
}
*/