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"
|
2024-08-19 10:38:46 +00:00
|
|
|
];
|
2023-01-28 20:49:10 +00:00
|
|
|
ConditionEnvironment = [ "WAYLAND_DISPLAY" ];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "dbus";
|
2023-11-10 18:48:06 +00:00
|
|
|
Environment = "PATH=${pkgs.bash}/bin:${pkgs.pavucontrol}/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
|
|
|
};
|
|
|
|
}
|