dotfiles/config/waybar/style.org
2024-08-07 14:58:48 -05:00

2.7 KiB

Waybar Styling

Global

Set global font, colours, and transitions.

  window#waybar {
      font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
      font-size: 13px;
      background: transparent;
      color: #ffffff;
      text-shadow: 1px 1px #64727D;
      transition-property: background-color;
      transition-duration: .5s;
  }

Button

Set global button styling.

  button {
      box-shadow: inset 0 -3px transparent;
      border: none;
      border-radius: 0;
  }

Set button hover styling

  button:hover {
      background: inherit;
      box-shadow: inset 0 -3px #ffffff;
  }

Set workspace button styling.

  #workspaces button {
      padding: 0 5px;
      text-shadow: 1px 1px #64727D;
      background-color: transparent;
      color: #ffffff;
  }

Set button hover styling in workspaces.

  #workspaces button:hover {
      background: rgba(0, 0, 0, 0.2);
  }

Set button focused styling in workspaces.

  #workspaces button.focused {
      background: transparent;
      text-shadow: 1px 1px #64727D;
      box-shadow: inset 0 -3px #ffffff;
  }

Set button urgent styling in workspaces.

  #workspaces button.urgent {
      background-color: #eb4d4b;
  }

Modes

Set global mode styling.

  #mode {
      background-color: #64727D;
      border-bottom: 3px solid #ffffff;
  }

Set typical mode styling.

  #clock,
  #cpu,
  #memory,
  #disk,
  #network,
  #pulseaudio,
  #wireplumber,
  #custom-media,
  #tray,
  #mode,
  #scratchpad,
  #mpd {
      padding: 0 10px;
      color: #ffffff;
  }

Add margins for workspaces and windows.

  #window,
  #workspaces {
      margin: 0 4px;
  }

Omit margins on leftmost and rightmost workspaces.

  .modules-left > widget:first-child > #workspaces {
      margin-left: 0;
  }

  /* If workspaces is the rightmost module, omit right margin */
  .modules-right > widget:last-child > #workspaces {
      margin-right: 0;
  }

Set focus styling.

  label:focus {
      background-color: #000000;
  }

Set important mode styling.

  #tray > .passive {
      -gtk-icon-effect: dim;
  }

  #tray > .needs-attention {
      -gtk-icon-effect: highlight;
  }

Set scratchpad styling.

  #scratchpad {
      background: rgba(0, 0, 0, 0.2);
  }

  #scratchpad.empty {
          background-color: transparent;
  }