aboutsummaryrefslogblamecommitdiff
path: root/home/wm/waybar/default.nix
blob: e71258509222682ca14ef6f50cda675a61df442c (plain) (tree)
1
2
3
4
                     
                                                          

  













                                                                            







                                                   
            

















                                                      

          
                                              


      
{ config, lib, ... }:
let isEnabled = config.my.home.wm.windowManager == "sway";
in
{
  config = lib.mkIf isEnabled {
    programs.waybar = {
      enable = true;
      systemd = { enable = true; };

      settings = [{
        layer = "bottom";
        position = "top";
        margin-top = 0;
        margin-left = 0;
        margin-right = 0;
        margin-bottom = 0;
        modules-left = [ "sway/workspaces" "sway/mode" ];
        modules-right = [ "pulseaudio" "network" "battery" "clock" "tray" ];
        "sway/workspaces" = { format = "{name}"; };
        "sway/mode" = { format = "{}"; };
        tray = { spacing = 10; };
        clock = { format = "{: %a %b %d %R}"; };
        battery = {
          states = {
            warning = 30;
            critical = 15;
          };
          format = "ac:{capacity}%";
          tooltip = true;
          tooltip-format = "{timeTo} ({capacity}%)";
        };
        pulseaudio = {
          format = "vol:{volume}%";
          format-bluetooth = "bt:{volume}%";
          format-bluetooth-muted = "bt:{volume}%";
          format-muted = "vol:{volume}%";
          on-click = "pavucontrol";
        };
        "network" = {
          format-wifi = "{essid}:{signalStrength}%";
          format-ethernet = "{ipaddr}/{cidr}";
          format-linked = "{ifname} (No IP)";
          format-disconnected = "network unavailable";
          format-alt = "{ifname}: {ipaddr}/{cidr}";
          tooltip = false;
        };
      }];
      style = (builtins.readFile ./style.css);
    };
  };
}