dotfiles/config/waybar/style.css

57 lines
915 B
CSS
Raw Normal View History

2025-06-29 21:22:43 +03:30
* {
2025-08-07 22:12:32 +03:30
font-family: "Departure Mono";
font-size: 19px;
padding: 0;
margin: 0;
border: none;
background: #000000;
color: #ffffff;
2025-06-29 21:22:43 +03:30
}
window#waybar {
2025-08-07 22:12:32 +03:30
background: #000000;
color: #ffffff;
2025-06-29 21:22:43 +03:30
}
2025-08-07 23:00:57 +03:30
/* Workspaces */
2025-06-29 21:22:43 +03:30
#workspaces button {
2025-08-07 22:12:32 +03:30
background: #000000;
color: #888888;
padding: 0 4px;
margin: 0 1px;
2025-08-07 23:00:57 +03:30
transition-duration: 0s;
}
2025-08-02 11:43:36 +03:30
#workspaces button.focused {
2025-08-07 22:12:32 +03:30
color: #ffffff;
font-weight: bold;
2025-08-07 23:00:57 +03:30
transition-duration: 0s;
}
/* Layout icon */
2025-08-07 22:12:32 +03:30
#sway-layout {
margin-left: 8px;
margin-right: 8px;
min-width: 20px;
2025-08-02 11:43:36 +03:30
}
2025-08-07 23:00:57 +03:30
/* WINDOW TITLE with distinct background */
2025-08-07 22:12:32 +03:30
#sway-window {
2025-08-07 23:00:57 +03:30
background-color: #222222;
color: #ffffff;
padding: 2px 8px;
margin: 0 4px;
}
/* Filler pushes the window title toward the right modules */
#custom-filler {
background: transparent;
color: transparent;
min-width: 800px;
2025-08-02 11:43:36 +03:30
}
2025-08-07 23:00:57 +03:30
/* DWM-style right status bar */
2025-08-07 22:12:32 +03:30
#custom-dwmstatus {
margin-right: 10px;
2025-06-29 21:22:43 +03:30
}