feat(home/waybar): MPD module
This commit is contained in:
parent
4fb610224f
commit
04ece7d9b0
2 changed files with 52 additions and 33 deletions
|
@ -54,6 +54,7 @@ in {
|
|||
]);
|
||||
modules-right =
|
||||
[
|
||||
"mpd"
|
||||
"custom/notifications"
|
||||
"tray"
|
||||
]
|
||||
|
@ -129,6 +130,16 @@ in {
|
|||
on-scroll-down = niriMsg "focus-workspace-down";
|
||||
});
|
||||
|
||||
"mpd" = {
|
||||
format = "{stateIcon} {title} - {artist} ({elapsedTime:%M:%S}/{totalTime:%M:%S})";
|
||||
format-disconnected = "";
|
||||
format-stopped = "";
|
||||
state-icons = {
|
||||
paused = "";
|
||||
playing = "";
|
||||
};
|
||||
};
|
||||
|
||||
"custom/notifications" = let
|
||||
swaync-client =
|
||||
lib.getExe' config.services.swaync.package "swaync-client";
|
||||
|
@ -224,6 +235,38 @@ in {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: @base00;
|
||||
border: 1px solid @base08;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @base08;
|
||||
}
|
||||
|
||||
#custom-startmenu {
|
||||
color: @base0B;
|
||||
background: @base02;
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
padding: 0 30px 0 15px;
|
||||
border-radius: 0 0 40px 0;
|
||||
}
|
||||
|
||||
#window,
|
||||
#pulseaudio,
|
||||
#cpu,
|
||||
#memory {
|
||||
font-weight: bold;
|
||||
margin: 4px 0;
|
||||
margin-left: 7px;
|
||||
padding: 0 18px;
|
||||
background: @base04;
|
||||
color: @base00;
|
||||
border-radius: 24px 10px 24px 10px;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
color: @base00;
|
||||
background: @base01;
|
||||
|
@ -264,39 +307,14 @@ in {
|
|||
transition: ${transition};
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: @base00;
|
||||
border: 1px solid @base08;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @base08;
|
||||
}
|
||||
|
||||
#window, #pulseaudio, #cpu, #memory {
|
||||
#mpd,
|
||||
#network,
|
||||
#battery,
|
||||
#custom-notifications,
|
||||
#tray,
|
||||
#custom-exit {
|
||||
font-weight: bold;
|
||||
margin: 4px 0;
|
||||
margin-left: 7px;
|
||||
padding: 0 18px;
|
||||
background: @base04;
|
||||
color: @base00;
|
||||
border-radius: 24px 10px 24px 10px;
|
||||
}
|
||||
|
||||
#custom-startmenu {
|
||||
color: @base0B;
|
||||
background: @base02;
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
padding: 0 30px 0 15px;
|
||||
border-radius: 0 0 40px 0;
|
||||
}
|
||||
|
||||
#network, #battery, #custom-notifications,
|
||||
#tray, #custom-exit {
|
||||
font-weight: bold;
|
||||
background: @base07;
|
||||
background: @base0D;
|
||||
color: @base00;
|
||||
margin: 4px 0;
|
||||
margin-right: 7px;
|
||||
|
|
|
@ -14,7 +14,8 @@ in {
|
|||
|
||||
extensionPackages = with pkgs; [
|
||||
mopidy-mpd
|
||||
mopidy-jellyfin
|
||||
# TODO: Enable once we have secrets (requires password in config)
|
||||
# mopidy-jellyfin
|
||||
];
|
||||
|
||||
configuration =
|
||||
|
|
Loading…
Reference in a new issue