mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 10:15:17 +03:00
Ivan Bushchik
e2f00a219c
sway: - use bg from ~/Pictures/bg/bg.png - add trackpad gestures - add opacity for alacritty (look to alacritty section) alacritty: - add 0.5 opacity (only not for menu window) waybar: - remove abstime from current configuration (module on it's place) zshrc: - add alias for quickly restart network Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
86 lines
1.5 KiB
CSS
86 lines
1.5 KiB
CSS
@import "macchiato.css";
|
|
* {
|
|
font-family: "Ubuntu", "JetBrains Mono", "Noto Sans";
|
|
font-size: 9pt;
|
|
border: none;
|
|
border-radius: 0;
|
|
font-weight: 400;
|
|
padding: 1px 1px;
|
|
}
|
|
|
|
window#waybar {
|
|
color: transparent;
|
|
background: none;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-top: 8px;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
|
|
|
|
#workspaces {
|
|
background: @base;
|
|
transition: none;
|
|
border-radius: 32px;
|
|
color: @subtext0;
|
|
margin: 8px 8px 0;
|
|
}
|
|
|
|
#workspaces button {
|
|
border-radius: 32px;
|
|
}
|
|
|
|
button:hover {
|
|
color: @red;
|
|
background-color: @surface1;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: @yellow;
|
|
background-color: @mantle;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: @pink;
|
|
}
|
|
#mode {
|
|
background-color: @mantle;
|
|
}
|
|
|
|
.modules-right {
|
|
transition: none;
|
|
background: @base;
|
|
color: @text;
|
|
margin: 8px 8px 0;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
#language, #clock, #battery, #cpu, #memory, #disk, #temperature, #backlight, #network, #pulseaudio, #custom-media, #tray, #mode, #idle_inhibitor, #mpd, #custom-loadavg, #custom-uptime {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
#window {
|
|
color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
label:focus {
|
|
background-color: #000000;
|
|
}
|
|
|
|
#language {
|
|
padding: 0 4px;
|
|
min-width: 16px;
|
|
}
|
|
|