Initial commit
This commit is contained in:
@@ -0,0 +1,213 @@
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
/*font-family: "SF Pro Display", "FontAwesome";*/
|
||||
font-family: "SF Mono", "FontAwesome";
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(21, 18, 27, 0.36);
|
||||
}
|
||||
|
||||
#privacy-item, #privacy-item > * {
|
||||
color: #ffae00;
|
||||
}
|
||||
|
||||
|
||||
tooltip {
|
||||
background: #1e1e2e;
|
||||
border-radius: 10px;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border-color: #11111b;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.modules-right {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
margin-left: 10px;
|
||||
padding-right: 0px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
background: none;
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
|
||||
#custom-power_profile,
|
||||
#custom-weather,
|
||||
#custom-moon,
|
||||
#custom-wallpaper,
|
||||
#custom-studio-sound,
|
||||
#custom-apps,
|
||||
#custom-files,
|
||||
#custom-hyprsunset,
|
||||
#window,
|
||||
#clock,
|
||||
#battery,
|
||||
#pulseaudio,
|
||||
#custom-network,
|
||||
#bluetooth,
|
||||
#temperature,
|
||||
#cpu,
|
||||
#memory,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#tray,
|
||||
#custom-notificationbar,
|
||||
#backlight,
|
||||
#privacy {
|
||||
opacity: 0.95;
|
||||
padding: 0px 10px;
|
||||
margin: 0px;
|
||||
margin-top: 0px;
|
||||
/*border: 2px solid red;*/
|
||||
}
|
||||
|
||||
#custom-files {
|
||||
border-radius: 0px 10px 10px 0px;
|
||||
}
|
||||
|
||||
#wireplumber {
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
#custom-network {
|
||||
min-width: 110px;
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
}
|
||||
|
||||
#custom-studio-sound {
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
min-width: 62px;
|
||||
}
|
||||
|
||||
#memory {
|
||||
min-width: 45px;
|
||||
color: #eba0ac;
|
||||
border-radius: 0px 10px 10px 0px;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
min-width: 50px;
|
||||
color: #c3eba0;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
min-width: 50px;
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
}
|
||||
|
||||
#tray {
|
||||
border-radius: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#tray > .active,
|
||||
#tray > .passive {
|
||||
margin-right: 100px;
|
||||
padding-left: 100px;
|
||||
}
|
||||
|
||||
#custom-power_profile {
|
||||
color: #a6e3a1;
|
||||
border-left: 0px;
|
||||
border-right: 0px;
|
||||
}
|
||||
|
||||
#window {
|
||||
border-radius: 10px;
|
||||
margin-left: 60px;
|
||||
margin-right: 60px;
|
||||
}
|
||||
|
||||
#clock {
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
border-right: 0px;
|
||||
}
|
||||
|
||||
#network {
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
border-left: 0px;
|
||||
border-right: 0px;
|
||||
}
|
||||
|
||||
#bluetooth {
|
||||
min-width: 17px;
|
||||
}
|
||||
|
||||
#battery {
|
||||
margin-right: 0px;
|
||||
padding: 0 10px;
|
||||
border-left: 0px;
|
||||
}
|
||||
|
||||
#battery.warning {
|
||||
color: #FFA500;
|
||||
}
|
||||
|
||||
#battery.critical {
|
||||
color: #F00;
|
||||
}
|
||||
|
||||
/* Menu styling */
|
||||
menu {
|
||||
border-radius: 8px;
|
||||
background: rgba(43, 48, 59, 0.95);
|
||||
color: #ffffff;
|
||||
/*border: 1px solid rgba(100, 114, 125, 0.3);*/
|
||||
border-style: none;
|
||||
padding: 4px 0;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
window decoration{
|
||||
border-style: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
menuitem {
|
||||
border-radius: 4px;
|
||||
padding: 8px 16px;
|
||||
margin: 2px 4px;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
menuitem:hover {
|
||||
background-color: rgba(100, 114, 125, 0.3);
|
||||
}
|
||||
|
||||
menuitem:selected {
|
||||
background-color: #64727D;
|
||||
}
|
||||
|
||||
/* Separator styling */
|
||||
separator {
|
||||
background-color: rgba(100, 114, 125, 0.3);
|
||||
margin: 4px 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user