os/modules/sway/waybar.service.nix

22 lines
681 B
Nix
Raw Normal View History

2022-11-20 22:28:23 +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/";
2022-11-20 22:28:23 +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";
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 = {
2022-11-20 22:28:23 +00:00
WantedBy = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
};
}