2024-03-28 19:52:15 -04:00
|
|
|
|
{ pkgs, lib, config, ... }: {
|
|
|
|
|
|
|
|
|
|
options = { guiApps.waybar.enable = lib.mkEnableOption "Enables waybar."; };
|
|
|
|
|
|
|
|
|
|
config = lib.mkIf config.guiApps.waybar.enable {
|
|
|
|
|
# Packages that should be installed to the user profile.
|
2024-03-30 23:59:57 -04:00
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
blueberry
|
|
|
|
|
pavucontrol
|
|
|
|
|
(nerdfonts.override { fonts = [ "Noto" ]; })
|
|
|
|
|
];
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
|
|
|
|
xdg.configFile."waybar/style.css".source = ./waybar.css;
|
|
|
|
|
|
|
|
|
|
programs.waybar.enable = true;
|
|
|
|
|
programs.waybar.settings = {
|
|
|
|
|
mainBar = {
|
|
|
|
|
height = 36;
|
|
|
|
|
layer = "top";
|
|
|
|
|
output = [ "*" ];
|
|
|
|
|
position = "top";
|
|
|
|
|
reload_style_on_change = true;
|
|
|
|
|
modules-left = [ "hyprland/workspaces" "hyprland/submap" ];
|
|
|
|
|
modules-center = [ "hyprland/window" ];
|
|
|
|
|
modules-right = [
|
|
|
|
|
"tray"
|
|
|
|
|
"bluetooth"
|
|
|
|
|
"network"
|
|
|
|
|
"pulseaudio"
|
|
|
|
|
"battery"
|
|
|
|
|
"power-profiles-daemon"
|
|
|
|
|
"clock"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
"hyprland/workspaces" = {
|
|
|
|
|
"all-outputs" = true;
|
2024-04-02 21:12:57 -04:00
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"active" = "";
|
|
|
|
|
};
|
|
|
|
|
"persistent-workspaces" = { "*" = 4; };
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
|
|
|
|
"hyprland/window" = { "max-length" = 100; };
|
|
|
|
|
"clock" = {
|
|
|
|
|
"tooltip-format" = "{:%Y-%m-%d | %H:%M}";
|
|
|
|
|
"interval" = 60;
|
|
|
|
|
"format" = "{:%I:%M%p}";
|
|
|
|
|
};
|
|
|
|
|
"battery" = {
|
|
|
|
|
"states" = { "critical" = 20; };
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"format-icons" = [ "" "" "" "" "" ];
|
|
|
|
|
"tooltip-format" = ''
|
|
|
|
|
{capacity}%: {timeTo}.
|
|
|
|
|
Using {power} watts.'';
|
|
|
|
|
};
|
|
|
|
|
"bluetooth" = {
|
|
|
|
|
"format" = " {status}";
|
|
|
|
|
"format-disabled" = ""; # an empty format will hide the module
|
|
|
|
|
"format-connected" = " {num_connections} connected";
|
|
|
|
|
"tooltip-format" = "{controller_alias} {controller_address}";
|
|
|
|
|
"tooltip-format-connected" = ''
|
|
|
|
|
{controller_alias} {controller_address}
|
|
|
|
|
|
|
|
|
|
{device_enumerate}'';
|
|
|
|
|
"tooltip-format-enumerate-connected" =
|
|
|
|
|
"{device_alias} {device_address}";
|
2024-03-30 23:59:57 -04:00
|
|
|
|
"on-click" = "${pkgs.blueberry}/bin/blueberry";
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
|
|
|
|
"pulseaudio" = {
|
|
|
|
|
"format" = " {volume}%";
|
|
|
|
|
"format-bluetooth" = "{volume}% {icon}";
|
|
|
|
|
"format-muted" = "";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"headphones" = "";
|
|
|
|
|
"handsfree" = "";
|
|
|
|
|
"headset" = "";
|
|
|
|
|
};
|
2024-04-02 21:12:57 -04:00
|
|
|
|
"ignored-sinks" = [ "Easy Effects Sink" ];
|
2024-03-30 23:59:57 -04:00
|
|
|
|
"on-click" = "${pkgs.pavucontrol}/bin/pavucontrol -t 3";
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
|
|
|
|
"network" = {
|
|
|
|
|
"format-wifi" = " {signalStrength}%";
|
|
|
|
|
"format-ethernet" = "";
|
|
|
|
|
"format-disconnected" = "⚠";
|
|
|
|
|
"tooltip-format" = "{ifname} via {gwaddr} ";
|
|
|
|
|
"tooltip-format-wifi" = "{essid} ({signalStrength}%) ";
|
|
|
|
|
"tooltip-format-ethernet" = "{ifname} ";
|
|
|
|
|
"tooltip-format-disconnected" = "Disconnected";
|
2024-03-30 23:59:57 -04:00
|
|
|
|
"on-click" =
|
|
|
|
|
"${pkgs.alacritty}/bin/alacritty --class nmtui -e ${pkgs.networkmanager}/bin/nmtui";
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
|
|
|
|
"tray" = { "spacing" = 10; };
|
|
|
|
|
"power-profiles-daemon" = {
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"tooltip-format" = ''
|
|
|
|
|
Profile: {profile}
|
|
|
|
|
Driver: {driver}'';
|
|
|
|
|
"tooltip" = true;
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"performance" = "";
|
|
|
|
|
"balanced" = "";
|
|
|
|
|
"power-saver" = "";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|