sway/waybar: fix colors after f36 upgrade

This commit is contained in:
Marco Thomas
2022-07-22 20:29:53 +02:00
parent 9a210d53e2
commit adc650ace3
5 changed files with 26 additions and 20 deletions

View File

@@ -15,9 +15,6 @@
"position": "left",
// If height property would be not present, it'd be calculated dynamically
"height": 37,
"modules-left": [
"sway/workspaces"
],
@@ -131,6 +128,7 @@
"sway/workspaces": {
"all-outputs": false,
"disable-scroll": false,
"disable-scroll-wraparound": true,
"format": "{icon}",
"format-icons": {
"1": "一",

View File

@@ -186,15 +186,19 @@
background-color: #f85551;
}
#workspaces button.urgent:hover {
background-color: #b85551;
}
/* remove weird GTK hover effect */
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: #282828;
border: #282828;
background: #383838;
border: #383838;
}
#workspaces button.focused:hover {
background: #93b259;
border: #93b259;
background: #75b259;
border: #73b259;
}