{ pkgs, ... }:
let
spotify-status = pkgs.writeShellScript "spotify-status" ''
STATUS=$(${pkgs.playerctl}/bin/playerctl -p spotify status 2>&1)
if [ "$STATUS" = "No players found" ]; then
echo " "
else
FORMAT="{{markup_escape(xesam:title)}} - {{markup_escape(xesam:artist)}}"
OUTPUT=$(${pkgs.playerctl}/bin/playerctl -p spotify metadata --format "$FORMAT")
case "$STATUS" in
"Playing")
echo " $OUTPUT"
;;
"Paused")
echo " $OUTPUT"
;;
*)
echo " "
;;
esac
fi
'';
notifications-status = pkgs.writeShellScript "notifications-status" ''
if ${pkgs.dunst}/bin/dunstctl is-paused | grep -q "false"; then
echo ""
else
DISABLED=
COUNT=$(${pkgs.dunst}/bin/dunstctl count waiting)
[ $COUNT != 0 ] && DISABLED=" $COUNT"
echo "$DISABLED"
fi
'';
toggle-bt-power = pkgs.writeShellScript "toggle-bt-power" ''
POWERED_ON=$(bluetoothctl show | grep "Powered: yes")
if [ -z "$POWERED_ON" ]; then
bluetoothctl power on >> /dev/null
else
bluetoothctl power off >> /dev/null
fi
'';
in
{
home-manager.users.alex = {
programs.waybar = {
enable = true;
settings = {
internal = {
name = "internal";
layer = "top";
position = "top";
height = 30;
output = [ "eDP-1" ];
modules-left = [ "hyprland/workspaces" ];
modules-right = [ "custom/spotify" "custom/dunst" "bluetooth" "wireplumber" "network" "battery" "clock" ];
"custom/spotify" = {
exec = spotify-status;
interval = 1;
tooltip = false;
};
"custom/dunst" = {
exec = notifications-status;
on-click-right = "${pkgs.dunst}/bin/dunstctl set-paused toggle";
interval = 1;
tooltip = false;
};
bluetooth = {
"format-off" = "";
"format-on" = "";
"format-connected" = "";
"on-click" = "${pkgs.blueman}/bin/blueman-manager";
"on-click-right" = toggle-bt-power;
};
wireplumber = {
format = " {volume}%";
format-muted = " {volume}%";
on-click = "${pkgs.pavucontrol}/bin/pavucontrol";
on-click-right = "${pkgs.wireplumber}/bin/wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
max-volume = 150;
scroll-step = 0.2;
};
network = {
interface = "wlp0s20f3";
format-wifi = "";
format-disconnected = "";
tooltip-format-wifi = "{essid} ({signalStrength}%)";
};
battery = {
"interval" = 60;
"format" = "{icon} {capacity}%";
"format-time" = "{H}h {M}min";
"format-charging" =" {capacity}%";
"format-icons" = ["" "" "" "" "" "" ];
};
"clock" = {
"interval" = 1;
"format" = "{:%H:%M:%S}";
"format-alt" = "{:%a, %B %d %H:%M:%S}";
};
};
external = {
name = "external";
layer = "top";
position = "top";
height = 30;
output = [ "HDMI-A-1" ];
modules-left = [ "hyprland/workspaces" ];
modules-right = [ "clock" ];
"clock" = {
"interval" = 1;
"format" = "{:%H:%M:%S}";
"format-alt" = "{:%a, %B %d %H:%M:%S}";
};
};
};
style = let
foreground = "#f9c22b";
foreground-dim = "#a57b06";
background = "#262626";
in
''
* {
font-family: 'DejaVuSansM Nerd Font Mono';
font-size: 22px;
}
#workspaces button {
color: ${foreground-dim};
background-color: ${background};
border: none;
}
#workspaces button:hover {
border-color: transparent;
background: none;
transition: none;
text-shadow: none;
box-shadow: none;
}
#workspaces button.active {
color: ${foreground};
background-color: ${background};
}
window#waybar {
color: ${foreground};
background-color: ${background};
}
#custom-spotify, #custom-dunst, #bluetooth, #wireplumber, #network, #battery, #clock {
margin: 0 12px;
}
'';
};
};
}