Update waybar appearance

This commit is contained in:
Andrew Scott 2023-06-15 04:11:05 -04:00
parent 4708e64813
commit 528787c678
Signed by: a
GPG key ID: 7CD5A5977E4931C1
2 changed files with 108 additions and 118 deletions

View file

@ -60,6 +60,7 @@
}, },
"clock": { "clock": {
"format": "{:%H:%M}",
"timezone": "America/New_York", "timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%Y-%m-%d}" "format-alt": "{:%Y-%m-%d}"
@ -67,7 +68,7 @@
"cpu": { "cpu": {
"format": "{usage}% ", "format": "{usage}% ",
"tooltip": false "tooltip": true
}, },
"memory": { "memory": {
@ -109,7 +110,7 @@
}, },
"network": { "network": {
// "interface": "wlp2*", // (Optional) To force the use of this interface // "interface": "wlan0",
"format-wifi": "{essid} ({signalStrength}%) ", "format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ipaddr}/{cidr} ", "format-ethernet": "{ipaddr}/{cidr} ",
"tooltip-format": "{ifname} via {gwaddr} ", "tooltip-format": "{ifname} via {gwaddr} ",
@ -119,7 +120,7 @@
}, },
"pulseaudio": { "pulseaudio": {
// "scroll-step": 1, // %, can be a float "scroll-step": 1,
"format": "{volume}% {icon} {format_source}", "format": "{volume}% {icon} {format_source}",
"format-bluetooth": "{volume}% {icon} {format_source}", "format-bluetooth": "{volume}% {icon} {format_source}",
"format-bluetooth-muted": " {icon} {format_source}", "format-bluetooth-muted": " {icon} {format_source}",
@ -135,21 +136,7 @@
"car": "", "car": "",
"default": ["", "", ""] "default": ["", "", ""]
}, },
"on-click": "pavucontrol" "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle"
}, },
"custom/media": {
"format": "{icon} {}",
"return-type": "json",
"max-length": 40,
"format-icons": {
"spotify": "",
"default": "🎜"
},
"escape": true,
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
}
} }

View file

@ -1,19 +1,19 @@
* { * {
/* `otf-font-awesome` is required to be installed for icons */ /* `otf-font-awesome` is required to be installed for icons */
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; font-family: FontAwesome, Hack, monospace;
font-size: 13px; font-size: 12px;
} }
window#waybar { window#waybar {
background-color: rgba(43, 48, 59, 0.5); background-color: rgba(50, 61, 67, 0.8);
border-bottom: 3px solid rgba(100, 114, 125, 0.5); border-bottom: 3px solid rgba(100, 114, 125, 0.5);
color: #ffffff; color: #d0bf9b;
transition-property: background-color; transition-property: background-color;
transition-duration: .5s; transition-duration: 0.5s;
} }
window#waybar.hidden { window#waybar.hidden {
opacity: 0.2; opacity: 0.8;
} }
/* /*
@ -21,55 +21,55 @@ window#waybar.empty {
background-color: transparent; background-color: transparent;
} }
window#waybar.solo { window#waybar.solo {
background-color: #FFFFFF; background-color: #4a555b;
} }
*/ */
window#waybar.termite { window#waybar.termite {
background-color: #3F3F3F; background-color: #3f3f3f;
} }
window#waybar.chromium { window#waybar.chromium {
background-color: #000000; background-color: #d8caac;
border: none; border: none;
} }
button { button {
/* Use box-shadow instead of border so the text isn't offset */ /* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent; box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each button name */ /* Avoid rounded borders under each button name */
border: none; border: none;
border-radius: 0; border-radius: 0;
} }
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */ /* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
button:hover { button:hover {
background: inherit; background: inherit;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #4a555b;
} }
#workspaces button { #workspaces button {
padding: 0 5px; padding: 0 5px;
background-color: transparent; background-color: transparent;
color: #ffffff; color: #4a555b;
} }
#workspaces button:hover { #workspaces button:hover {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#workspaces button.focused { #workspaces button.focused {
background-color: #64727D; background-color: #64727d;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #4a555b;
} }
#workspaces button.urgent { #workspaces button.urgent {
background-color: #eb4d4b; background-color: #eb4d4b;
} }
#mode { #mode {
background-color: #64727D; background-color: #64727d;
border-bottom: 3px solid #ffffff; border-bottom: 3px solid #4a555b;
} }
#clock, #clock,
@ -88,193 +88,196 @@ button:hover {
#idle_inhibitor, #idle_inhibitor,
#scratchpad, #scratchpad,
#mpd { #mpd {
padding: 0 10px; padding: 0 10px;
color: #ffffff; color: #4a555b;
} }
#window, #window,
#workspaces { #workspaces {
margin: 0 4px; margin: 0 4px;
} }
/* If workspaces is the leftmost module, omit left margin */ /* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces { .modules-left > widget:first-child > #workspaces {
margin-left: 0; margin-left: 0;
} }
/* 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;
} }
#clock { #clock {
background-color: #64727D; background-color: #6eb2a9;
color: #4a555b;
} }
#battery { #battery {
background-color: #ffffff; background-color: #4a555b;
color: #000000; color: #d8caac;
} }
#battery.charging, #battery.plugged { #battery.charging,
color: #ffffff; #battery.plugged {
background-color: #26A65B; color: #4a555b;
background-color: #26a65b;
} }
@keyframes blink { @keyframes blink {
to { to {
background-color: #ffffff; background-color: #4a555b;
color: #000000; color: #d8caac;
} }
} }
#battery.critical:not(.charging) { #battery.critical:not(.charging) {
background-color: #f53c3c; background-color: #f53c3c;
color: #ffffff; color: #4a555b;
animation-name: blink; animation-name: blink;
animation-duration: 0.5s; animation-duration: 0.5s;
animation-timing-function: linear; animation-timing-function: linear;
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-direction: alternate; animation-direction: alternate;
} }
label:focus { label:focus {
background-color: #000000; background-color: #d8caac;
} }
#cpu { #cpu {
background-color: #2ecc71; background-color: #9bb86f;
color: #000000; color: #4a555b;
} }
#memory { #memory {
background-color: #9b59b6; background-color: #cf87a9;
} }
#disk { #disk {
background-color: #964B00; background-color: #964b00;
} }
#backlight { #backlight {
background-color: #90b1b1; background-color: #90b1b1;
} }
#network { #network {
background-color: #2980b9; background-color: #7fbbb3;
} }
#network.disconnected { #network.disconnected {
background-color: #f53c3c; background-color: #f53c3c;
} }
#pulseaudio { #pulseaudio {
background-color: #f1c40f; background-color: #d5b26b;
color: #000000; color: #4a555b;
} }
#pulseaudio.muted { #pulseaudio.muted {
background-color: #90b1b1; background-color: #90b1b1;
color: #2a5c45; color: #2a5c45;
} }
#wireplumber { #wireplumber {
background-color: #fff0f5; background-color: #fff0f5;
color: #000000; color: #d8caac;
} }
#wireplumber.muted { #wireplumber.muted {
background-color: #f53c3c; background-color: #f53c3c;
} }
#custom-media { #custom-media {
background-color: #66cc99; background-color: #66cc99;
color: #2a5c45; color: #2a5c45;
min-width: 100px; min-width: 100px;
} }
#custom-media.custom-spotify { #custom-media.custom-spotify {
background-color: #66cc99; background-color: #66cc99;
} }
#custom-media.custom-vlc { #custom-media.custom-vlc {
background-color: #ffa000; background-color: #ffa000;
} }
#temperature { #temperature {
background-color: #f0932b; background-color: #e2966c;
} }
#temperature.critical { #temperature.critical {
background-color: #eb4d4b; background-color: #eb4d4b;
} }
#tray { #tray {
background-color: #2980b9; background-color: #323d43;
} }
#tray > .passive { #tray > .passive {
-gtk-icon-effect: dim; -gtk-icon-effect: dim;
} }
#tray > .needs-attention { #tray > .needs-attention {
-gtk-icon-effect: highlight; -gtk-icon-effect: highlight;
background-color: #eb4d4b; background-color: #e26c6e;
} }
#idle_inhibitor { #idle_inhibitor {
background-color: #2d3436; background-color: #525c62;
color: #d0bf9b;
} }
#idle_inhibitor.activated { #idle_inhibitor.activated {
background-color: #ecf0f1; background-color: #d0bf9b;
color: #2d3436; color: #525c62;
} }
#mpd { #mpd {
background-color: #66cc99; background-color: #66cc99;
color: #2a5c45; color: #2a5c45;
} }
#mpd.disconnected { #mpd.disconnected {
background-color: #f53c3c; background-color: #f53c3c;
} }
#mpd.stopped { #mpd.stopped {
background-color: #90b1b1; background-color: #90b1b1;
} }
#mpd.paused { #mpd.paused {
background-color: #51a37a; background-color: #51a37a;
} }
#language { #language {
background: #00b093; background: #00b093;
color: #740864; color: #740864;
padding: 0 5px; padding: 0 5px;
margin: 0 5px; margin: 0 5px;
min-width: 16px; min-width: 16px;
} }
#keyboard-state { #keyboard-state {
background: #97e1ad; background: #72b783;
color: #000000; color: #4a555b;
padding: 0 0px; padding: 0 0px;
margin: 0 5px; margin: 0 0px;
min-width: 16px; min-width: 16px;
} }
#keyboard-state > label { #keyboard-state > label {
padding: 0 5px; padding: 0 5px;
} }
#keyboard-state > label.locked { #keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#scratchpad { #scratchpad {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#scratchpad.empty { #scratchpad.empty {
background-color: transparent; background-color: transparent;
} }