2024-04-07 22:16:33 -04:00
|
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
lib,
|
|
|
|
|
config,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
options = {guiApps.waybar.enable = lib.mkEnableOption "Enables waybar.";};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
|
|
|
|
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
|
2024-04-07 22:16:33 -04:00
|
|
|
|
(nerdfonts.override {fonts = ["Noto"];})
|
2024-03-30 23:59:57 -04:00
|
|
|
|
];
|
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";
|
2024-04-07 22:16:33 -04:00
|
|
|
|
output = ["*"];
|
2024-03-28 19:52:15 -04:00
|
|
|
|
position = "top";
|
|
|
|
|
reload_style_on_change = true;
|
2024-04-07 22:16:33 -04:00
|
|
|
|
modules-left = ["hyprland/workspaces" "hyprland/submap"];
|
|
|
|
|
modules-center = ["hyprland/window"];
|
2024-03-28 19:52:15 -04:00
|
|
|
|
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" = "";
|
|
|
|
|
};
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"persistent-workspaces" = {"*" = 4;};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"hyprland/window" = {"max-length" = 100;};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
"clock" = {
|
|
|
|
|
"tooltip-format" = "{:%Y-%m-%d | %H:%M}";
|
|
|
|
|
"interval" = 60;
|
|
|
|
|
"format" = "{:%I:%M%p}";
|
|
|
|
|
};
|
|
|
|
|
"battery" = {
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"states" = {"critical" = 20;};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
"format" = "{icon}";
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"format-icons" = ["" "" "" "" ""];
|
2024-03-28 19:52:15 -04:00
|
|
|
|
"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}'';
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"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-07 22:16:33 -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-04-07 22:16:33 -04:00
|
|
|
|
"on-click" = "${pkgs.alacritty}/bin/alacritty --class nmtui -e ${pkgs.networkmanager}/bin/nmtui";
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
2024-04-07 22:16:33 -04:00
|
|
|
|
"tray" = {"spacing" = 10;};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
"power-profiles-daemon" = {
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"tooltip-format" = ''
|
|
|
|
|
Profile: {profile}
|
|
|
|
|
Driver: {driver}'';
|
|
|
|
|
"tooltip" = true;
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"performance" = "";
|
|
|
|
|
"balanced" = "";
|
|
|
|
|
"power-saver" = "";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|