glzr-io / zebar

Zebar is a tool for creating customizable and cross-platform taskbars, desktop widgets, and popups.
GNU General Public License v3.0
415 stars 29 forks source link

Focus Workspace GlazeWM #56

Closed pex81 closed 1 month ago

pex81 commented 5 months ago

`

  template/glazewm:
    styles: |
      display: flex;
      align-items: center;

      .workspace {
        background: rgba(44, 122, 254, 1);
        margin-right: 4px;
        width: 30px;
        height: 30px;
        color: #ffffffe6;
        border: none;
        border-radius: 2px;

      }   
    providers: ['glazewm']
    template: |
      @for (workspace of glazewm.workspacesOnMonitor) {
        <button class="workspace">
          {{ workspace.name }}
        </button>
      }  

` How can I highlight the workspace in use in different colors? and is it possible to click on the workspace number to change workspace?

immagine

zennolux commented 4 months ago

That's exactly what I want to ask

lars-berger commented 1 month ago

This has been added to the sample config 👍 Latest release

zennolux commented 1 month ago

You are great!