Getting things setup for sway wayland

This commit is contained in:
Chris Cochrun 2021-04-16 06:09:09 -05:00
parent 2287ac931b
commit e94ff95428
20 changed files with 513 additions and 53 deletions

View file

@ -14,32 +14,36 @@
@define-color base0D #57c7ff;
@define-color base0E #ff6ac1;
@define-color base0F #b2643c;
@define-color basetransparent rgba(40, 42, 54, 0.0);
@define-color backtransparent rgba(40, 42, 54, 0.7);
* {
border: none;
border-radius: 0;
font-family: VictorMono Nerd Font;
font-size: 12px;
font-weight: bold;
font-weight: normal;
box-shadow: none;
text-shadow: none;
transition-duration: 0s;
padding-top: 0px;
padding-bottom: 0px;
}
window {
color: @base05;
background: rgba(1, 1, 1, 0.0);
background: @basetransparent;
}
window#waybar.solo {
background: rgba(1, 1, 1, 0.40);
background: @basetransparent;
}
#workspaces {
border-radius: 20px;
margin-left: 10px;
padding-right: 10px;
background: rgba(40, 42, 54, 0.85);
background: @backtransparent;
transition: none;
}
@ -54,18 +58,18 @@ window#waybar.solo {
}
#workspaces button.focused {
color: #9aedfe;
color: @base0C;
}
#workspaces button:hover {
transition: none;
box-shadow: inherit;
text-shadow: inherit;
color: #ff79c6;
color: @base0E;
}
#workspaces button.urgent {
color: rgba(238, 46, 36, 1);
color: @base08;
}
#mode, #battery, #cpu, #memory, #network, #pulseaudio, #idle_inhibitor, #backlight, #custom-storage, #custom-spotify, #custom-weather, #custom-mail {
@ -80,8 +84,8 @@ window#waybar.solo {
padding-right: 10px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(107, 142, 35, 0.85);
color: @base0B;
background: @backtransparent;
}
#backlight {
@ -91,20 +95,20 @@ window#waybar.solo {
padding-right: 5px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(188, 143, 143, 0.85);
color: @base01;
background: @base0B;
}
#battery.warning {
color: rgba(255, 210, 4, 1);
color: @base09;
}
#battery.critical {
color: rgba(238, 46, 36, 1);
color: @base08;
}
#battery.charging {
color: rgba(217, 216, 216, 1);
color: @base0B;
}
#pulseaudio {
@ -114,8 +118,8 @@ window#waybar.solo {
padding-right: 10px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(189, 183, 107, 0.85);
color: @base09;
background: @backtransparent;
}
#network {
@ -125,8 +129,8 @@ window#waybar.solo {
padding-right: 14px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(189, 183, 107, 0.85);
color: @base0A;
background: @backtransparent;
}
#cpu {
@ -136,19 +140,19 @@ window#waybar.solo {
padding-right: 10px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(205, 92, 92, 0.85);
color: @base0B;
background: @backtransparent;
}
#battery {
margin-left: 2px;
margin-right: 2px;
padding-left: 10px;
padding-right: 18px;
padding-left: 5px;
padding-right: 14px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(176, 196, 222, 0.85);
color: @base0D;
background: @backtransparent;
}
#battery.bat2 {
@ -162,10 +166,27 @@ window#waybar.solo {
padding-right: 10px;
border-radius: 20px;
transition: none;
color: #4d4d4d;
background: rgba(222, 184, 135, 0.85);
color: @base0C;
background: @backtransparent;
}
#temperature {
margin-left: 2px;
margin-right: 2px;
padding-left: 10px;
padding-right: 10px;
border-radius: 20px;
transition: none;
color: @base0E;
background: @backtransparent;
}
#tray {
margin-right: 10px;
padding-left: 10px;
padding-right: 10px;
border-radius: 20px;
transition: none;
color: @base0E;
background: @backtransparent;
}