first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
91
modules/home/waybar/style.nix
Normal file
91
modules/home/waybar/style.nix
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
{ ... }: {
|
||||
programs.waybar.style = ''
|
||||
* {
|
||||
font-family: JetBrainsMono Nerd Font;
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
min-height: 0;
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
window>box {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 8px;
|
||||
border: 2px solid #595959;
|
||||
border-radius: 0px;
|
||||
background-color: rgba(31, 31, 31, 1);
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding-left: 0px;
|
||||
padding-right: 4px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding-top: 5px;
|
||||
border-radius: 0px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: #595959;
|
||||
color: rgb(23, 23, 23);
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #fff000;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: rgb(48, 45, 65);
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: rgb(217, 224, 238);
|
||||
}
|
||||
|
||||
#custom-launcher {
|
||||
font-size: 16px;
|
||||
padding-left: 10px;
|
||||
padding-right: 6px;
|
||||
color: #6896BA;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#memory,
|
||||
#temperature,
|
||||
#cpu,
|
||||
#mpd,
|
||||
#custom-wall,
|
||||
#temperature,
|
||||
#backlight,
|
||||
#pulseaudio,
|
||||
#network,
|
||||
#battery,
|
||||
#disk,
|
||||
#idle_inhibitor {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
color: #B9B9B9;
|
||||
}
|
||||
#cava {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
#tray {
|
||||
padding-right: 8px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
'';
|
||||
}
|
||||
Reference in a new issue