Compare commits

..

No commits in common. "314904c99e2e485c979ab99ff0f1627794abb1e2" and "d701f79c11626beb697fcdd6e2afe463613c25ba" have entirely different histories.

2 changed files with 59 additions and 9 deletions

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkMenu" id="menu">
<child>
<object class="GtkMenuItem" id="suspend">
<property name="label">Suspend</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="hibernate">
<property name="label">Hibernate</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="shutdown">
<property name="label">Shutdown</property>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="delimiter1"/>
</child>
<child>
<object class="GtkMenuItem" id="reboot">
<property name="label">Reboot</property>
</object>
</child>
</object>
</interface>

View file

@ -21,7 +21,6 @@
font-family: JetBrainsMono, FontAwesome, Roboto, Helvetica, Arial, sans-serif; font-family: JetBrainsMono, FontAwesome, Roboto, Helvetica, Arial, sans-serif;
font-size: 13px; font-size: 13px;
border-radius: 0; border-radius: 0;
color: @base2;
} }
window#waybar { window#waybar {
@ -42,6 +41,14 @@ window#waybar.hidden {
opacity: 0.2; opacity: 0.2;
} }
/*
window#waybar.empty {
background-color: transparent;
}
window#waybar.solo {
background-color: #FFFFFF;
}
*/
window#waybar.termite { window#waybar.termite {
background-color: #3F3F3F; background-color: #3F3F3F;
@ -90,6 +97,7 @@ button:hover {
box-shadow: inset 0 -3px @base03; box-shadow: inset 0 -3px @base03;
} }
#clock,
#battery, #battery,
#cpu, #cpu,
#memory, #memory,
@ -116,7 +124,7 @@ button:hover {
#workspaces { #workspaces {
margin: 0 4px; margin: 0 4px;
} }
halestorm darkness always wins
.modules-right *, .modules-left * { .modules-right *, .modules-left * {
border-radius: 5px; border-radius: 5px;
} }
@ -125,7 +133,7 @@ button:hover {
.modules-left > widget:first-child > #workspaces { .modules-left > widget:first-child > #workspaces {
margin-left: 0; margin-left: 0;
} }
halestorm darkness always wins
/* If workspaces is the rightmost module, omit right margin */ /* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces { .modules-right > widget:last-child > #workspaces {
margin-right: 0; margin-right: 0;
@ -139,9 +147,9 @@ button:hover {
padding-bottom: 7px; padding-bottom: 7px;
} }
#clock { #clock {
padding: 0 10px; border-bottom: 3px solid @violet;
color: @base2;
} }
#backlight { #backlight {
@ -252,6 +260,21 @@ label:focus {
min-width: 16px; min-width: 16px;
} }
#keyboard-state {
background: #97e1ad;
color: #000000;
padding: 0 0px;
margin: 0 5px;
min-width: 16px;
}
#keyboard-state > label {
padding: 0 5px;
}
#keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2);
}
#scratchpad { #scratchpad {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
@ -271,14 +294,13 @@ label:focus {
} }
#privacy-item.screenshare { #privacy-item.screenshare {
border-bottom: 3px solid @orange; background-color: #cf5700;
} }
#privacy-item.audio-in { #privacy-item.audio-in {
border-bottom: 3px solid @green; background-color: #1ca000;
} }
#privacy-item.audio-out { #privacy-item.audio-out {
background-color: #0069d4; background-color: #0069d4;
border-bottom: 3px solid @cyan;
} }