2023-01-28 20:49:10 +00:00
|
|
|
{pkgs, ...}: {
|
2021-05-30 19:10:28 +00:00
|
|
|
Unit = {
|
|
|
|
Description = "Highly customizable Wayland bar for Sway and Wlroots based compositors.";
|
|
|
|
Documentation = "https://github.com/Alexays/Waybar/wiki/";
|
2023-01-28 20:49:10 +00:00
|
|
|
BindsTo = ["sway-session.target"];
|
|
|
|
After = ["sway-session.target" "network-online.target"];
|
|
|
|
Wants = ["graphical-session-pre.target" "network-online.target" "blueman-applet.service"];
|
|
|
|
ConditionEnvironment = ["WAYLAND_DISPLAY"];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "dbus";
|
2022-05-05 23:43:31 +00:00
|
|
|
Environment = "PATH=${pkgs.bash}/bin:${pkgs.pavucontrol}/bin:${pkgs.swaynotificationcenter}/bin";
|
2021-05-30 19:10:28 +00:00
|
|
|
BusName = "fr.arouillard.waybar";
|
|
|
|
ExecStart = "${pkgs.waybar}/bin/waybar";
|
|
|
|
};
|
|
|
|
|
|
|
|
Install = {
|
2023-01-28 20:49:10 +00:00
|
|
|
WantedBy = ["sway-session.target"];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|