os/modules/graphical/sway/waybar.service.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
731 B
Nix
Raw Normal View History

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";
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
};
}