2024-04-07 22:16:33 -04:00
|
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
lib,
|
|
|
|
|
config,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
2024-04-17 22:39:00 -04:00
|
|
|
|
options = {alyraffauf.apps.waybar.enable = lib.mkEnableOption "Enables waybar.";};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
2024-04-17 22:39:00 -04:00
|
|
|
|
config = lib.mkIf config.alyraffauf.apps.waybar.enable {
|
2024-03-28 19:52:15 -04:00
|
|
|
|
# Packages that should be installed to the user profile.
|
2024-03-30 23:59:57 -04:00
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
blueberry
|
|
|
|
|
pavucontrol
|
|
|
|
|
];
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
2024-05-04 20:44:29 -04:00
|
|
|
|
xdg.configFile."waybar/style.css".text = ''
|
|
|
|
|
* {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 0;
|
2024-05-04 21:23:04 -04:00
|
|
|
|
font-family: "${config.alyraffauf.desktop.theme.terminalFont.name}";
|
2024-05-04 20:44:29 -04:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
|
background: rgba (35, 38, 52, 0.0);
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button {
|
|
|
|
|
padding: 0px 5px;
|
|
|
|
|
margin: 0 0px;
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button.active,
|
|
|
|
|
#workspaces button.focused {
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#submap,
|
|
|
|
|
#mode {
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
margin: 0 5px;
|
|
|
|
|
color: #e78284;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tags button {
|
|
|
|
|
padding: 0px 5px;
|
|
|
|
|
margin: 0 0px;
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tags button.focused {
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#clock,
|
|
|
|
|
#battery,
|
|
|
|
|
#bluetooth,
|
|
|
|
|
#network,
|
|
|
|
|
#power-profiles-daemon,
|
|
|
|
|
#pulseaudio,
|
|
|
|
|
#wireplumber,
|
|
|
|
|
#inhibitor,
|
|
|
|
|
#custom-logout,
|
|
|
|
|
#tray {
|
|
|
|
|
padding: 0 7.5px;
|
|
|
|
|
margin: 0 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#battery {
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#battery.charging {
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#battery.critical:not(.charging) {
|
|
|
|
|
color: #e78284;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces,
|
|
|
|
|
#mode,
|
|
|
|
|
#submap,
|
2024-05-09 13:59:53 -04:00
|
|
|
|
#scratchpad,
|
2024-05-04 20:44:29 -04:00
|
|
|
|
#tray,
|
|
|
|
|
#clock,
|
|
|
|
|
#hardware {
|
|
|
|
|
border-radius: 10;
|
2024-05-09 13:59:53 -04:00
|
|
|
|
background: rgba ${
|
|
|
|
|
if config.alyraffauf.desktop.theme.colors.preferDark
|
|
|
|
|
then "(35, 38, 52, 0.8);"
|
|
|
|
|
else "(220, 224, 232, 0.8);"
|
|
|
|
|
}
|
2024-05-04 20:44:29 -04:00
|
|
|
|
margin: 5px 10px 0px 10px;
|
|
|
|
|
padding: 0px 10px 0px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
|
padding: 0px 20px 0px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#submap,
|
|
|
|
|
#mode {
|
|
|
|
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
|
|
|
|
background: rgba(231, 130, 132, 0.8);
|
|
|
|
|
}
|
|
|
|
|
'';
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
2024-04-24 17:39:19 -04:00
|
|
|
|
programs.waybar = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
mainBar = {
|
2024-04-26 21:36:29 -04:00
|
|
|
|
height = 32;
|
2024-04-24 17:39:19 -04:00
|
|
|
|
layer = "top";
|
|
|
|
|
output = ["*"];
|
|
|
|
|
position = "top";
|
|
|
|
|
modules-left = lib.mkDefault [];
|
|
|
|
|
modules-center = ["clock"];
|
|
|
|
|
modules-right = [
|
|
|
|
|
"tray"
|
2024-04-25 22:42:26 -04:00
|
|
|
|
"group/hardware"
|
2024-04-24 17:39:19 -04:00
|
|
|
|
];
|
|
|
|
|
"hyprland/workspaces" = {
|
|
|
|
|
"all-outputs" = true;
|
|
|
|
|
"format" = "{icon} {name}";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"active" = "";
|
|
|
|
|
};
|
|
|
|
|
"sort-by" = "id";
|
2024-04-09 20:30:09 -04:00
|
|
|
|
};
|
2024-04-24 17:39:19 -04:00
|
|
|
|
"hyprland/submap" = {
|
2024-05-05 19:39:36 -04:00
|
|
|
|
"on-click" = ''${lib.getExe' config.wayland.windowManager.hyprland.package "hyprctl"} dispatch submap reset'';
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"hyprland/window" = {
|
|
|
|
|
"format" = "";
|
|
|
|
|
"max-length" = 100;
|
|
|
|
|
"separate-outputs" = true;
|
|
|
|
|
"icon" = true;
|
|
|
|
|
};
|
|
|
|
|
"sway/workspaces" = {
|
|
|
|
|
"all-outputs" = true;
|
|
|
|
|
"format" = "{icon} {name}";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"focused" = "";
|
|
|
|
|
};
|
|
|
|
|
"sort-by" = "id";
|
|
|
|
|
};
|
|
|
|
|
"sway/mode" = {
|
2024-05-05 19:39:36 -04:00
|
|
|
|
"on-click" = ''${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} mode default'';
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"sway/window" = {
|
|
|
|
|
"max-length" = 100;
|
|
|
|
|
};
|
2024-05-09 13:59:53 -04:00
|
|
|
|
"sway/scratchpad" = {
|
2024-05-11 00:58:33 -04:00
|
|
|
|
"format" = "{icon} {count}";
|
2024-05-09 13:59:53 -04:00
|
|
|
|
"show-empty" = false;
|
|
|
|
|
"format-icons" = ["" ""];
|
|
|
|
|
"tooltip" = true;
|
|
|
|
|
"tooltip-format" = "{app}: {title}";
|
|
|
|
|
};
|
2024-04-24 17:39:19 -04:00
|
|
|
|
"river/window" = {
|
|
|
|
|
"max-length" = 100;
|
|
|
|
|
};
|
|
|
|
|
"river/tags" = {
|
|
|
|
|
"num-tags" = 4;
|
|
|
|
|
};
|
|
|
|
|
"clock" = {
|
2024-04-26 08:12:49 -04:00
|
|
|
|
"tooltip-format" = "{:%Y-%m-%d | %H:%M}";
|
2024-04-24 17:39:19 -04:00
|
|
|
|
"interval" = 60;
|
|
|
|
|
"format" = "{:%I:%M%p}";
|
|
|
|
|
};
|
|
|
|
|
"battery" = {
|
|
|
|
|
"states" = {"critical" = 20;};
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"format-icons" = ["" "" "" "" "" "" "" "" "" ""];
|
|
|
|
|
"tooltip-format" = ''
|
|
|
|
|
{capacity}%: {timeTo}.
|
2024-04-26 08:17:09 -04:00
|
|
|
|
Draw: {power} watts.'';
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"inhibitor" = {
|
|
|
|
|
"what" = "sleep";
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"activated" = "";
|
|
|
|
|
"deactivated" = "";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
"bluetooth" = {
|
|
|
|
|
"format" = "";
|
|
|
|
|
"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}
|
2024-03-28 19:52:15 -04:00
|
|
|
|
|
2024-04-24 17:39:19 -04:00
|
|
|
|
{device_enumerate}'';
|
|
|
|
|
"tooltip-format-enumerate-connected" = "{device_alias} {device_address}";
|
2024-05-05 19:39:36 -04:00
|
|
|
|
"on-click" = lib.getExe' pkgs.blueberry "blueberry";
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"pulseaudio" = {
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"format-bluetooth" = "{volume}% {icon}";
|
|
|
|
|
"format-muted" = "";
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"headphones" = "";
|
|
|
|
|
"handsfree" = "";
|
|
|
|
|
"headset" = "";
|
|
|
|
|
"default" = ["" "" ""];
|
|
|
|
|
};
|
|
|
|
|
"scroll-step" = 5;
|
|
|
|
|
"ignored-sinks" = ["Easy Effects Sink"];
|
2024-05-05 19:39:36 -04:00
|
|
|
|
"on-click" = "${lib.getExe pkgs.pavucontrol} -t 3";
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"network" = {
|
|
|
|
|
"format-wifi" = "{icon}";
|
|
|
|
|
"format-ethernet" = "";
|
|
|
|
|
"format-disconnected" = "⚠";
|
|
|
|
|
"format-icons" = ["" "" "" ""];
|
|
|
|
|
"tooltip-format" = "{ifname} via {gwaddr} ";
|
|
|
|
|
"tooltip-format-wifi" = "{essid} ({signalStrength}%) {icon}";
|
|
|
|
|
"tooltip-format-ethernet" = "{ifname} ";
|
|
|
|
|
"tooltip-format-disconnected" = "Disconnected";
|
2024-05-05 22:00:46 -04:00
|
|
|
|
"on-click" = "${config.alyraffauf.desktop.defaultApps.terminalEditor.exe} --class nmtui -e ${pkgs.networkmanager}/bin/nmtui";
|
2024-04-24 17:39:19 -04:00
|
|
|
|
};
|
|
|
|
|
"tray" = {"spacing" = 15;};
|
|
|
|
|
"custom/logout" = {
|
2024-05-05 19:39:36 -04:00
|
|
|
|
"on-click" = "${lib.getExe pkgs.wlogout}";
|
2024-04-24 17:39:19 -04:00
|
|
|
|
"format" = "";
|
|
|
|
|
};
|
|
|
|
|
"power-profiles-daemon" = {
|
|
|
|
|
"format" = "{icon}";
|
|
|
|
|
"tooltip-format" = ''
|
|
|
|
|
Profile: {profile}
|
|
|
|
|
Driver: {driver}'';
|
|
|
|
|
"tooltip" = true;
|
|
|
|
|
"format-icons" = {
|
|
|
|
|
"default" = "";
|
|
|
|
|
"performance" = "";
|
|
|
|
|
"balanced" = "";
|
|
|
|
|
"power-saver" = "";
|
|
|
|
|
};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
2024-04-25 22:42:26 -04:00
|
|
|
|
"group/hardware" = {
|
|
|
|
|
"orientation" = "horizontal";
|
2024-05-11 22:22:58 -04:00
|
|
|
|
modules = ["pulseaudio" "power-profiles-daemon" "battery" "custom/logout"];
|
2024-04-25 22:42:26 -04:00
|
|
|
|
};
|
2024-03-28 19:52:15 -04:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|