This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/waybar.nix

201 lines
4.9 KiB
Nix
Executable File

{ config, pkgs, lib, nix-colors, ... }:
let
wobsock = "/tmp/wob-vol.fifo";
colors = config.colorScheme.colors;
backgroundColorRGB = nix-colors.lib-core.conversions.hexToRGBString "," colors.base00;
backgroundAlpha = "0.7";
font = "JetBrainsMono Nerd Font";
fontSize = "9pt";
ds-battery = pkgs.writeShellScriptBin "ds-battery.sh" ''
#ds_capacity_file="/sys/class/power_supply/ps-controller-battery-4c:b9:9b:74:ae:31/capacity"
#ds_status_file="/sys/class/power_supply/ps-controller-battery-4c:b9:9b:74:ae:31/status"
ds_capacity_file="/sys/class/power_supply/ps-controller-battery-a4:53:85:35:11:fc/capacity"
ds_status_file="/sys/class/power_supply/ps-controller-battery-a4:53:85:35:11:fc/status"
while true; do
if [[ -f $ds_capacity_file ]]; then
charge=$(<"$ds_capacity_file")
if [[ $(<"$ds_status_file") == "Charging" ]]; then
echo "{\"class\":\"charging\",\"text\":\" Charging: $charge%\",\"tooltip\":\"Charging:\n$charge%\"}"
else
echo "{\"class\":\"discharging\",\"text\":\" $charge%\",\"tooltip\":\"Battery:\\n$charge%\"}"
fi
else
echo "{\"class\":\"not_connected\",\"text\":\"\"}"
fi
sleep 10
done
'';
in
{
programs.waybar = {
enable = true;
settings = [{
layer = "top";
position = "top";
height = 32;
modules-left = [ "custom/blank" "hyprland/window" ];
modules-center = [ "wlr/workspaces" "custom/blank" ];
modules-right = [
"custom/ds-battery"
"wireplumber"
"mpd"
"tray"
"custom/blank"
"clock"
"custom/blank"
];
"sway/mode" = { format = " {}"; };
"sway/window" = {
icon = false;
icon-size = 16;
};
"wlr/workspaces" = {
on-click = "activate";
on-scroll-up = "hyprctl dispatch workspace e+1";
on-scroll-down = "hyprctl dispatch workspace e-1";
format = "{icon}";
format-icons = {
active = "";
default = "";
};
};
"hyprland/window" = {
separate-outputs = true;
};
"clock" = {
format = "{:%a %d. %B %H:%M}";
};
"wireplumber" = {
scroll-step = 5;
format = "{icon} {volume}%";
format-icons = [ "" "" "" "" ];
ignored-sinks = [ "Easy Effects Sink" ];
on-scroll-up = "${pkgs.pamixer}/bin/pamixer -i 10 --get-volume > ${wobsock}";
on-scroll-down = "${pkgs.pamixer}/bin/pamixer -d 10 --get-volume > ${wobsock}";
};
"tray" = {
icon-size = 16;
spacing = 10;
};
"mpd" = {
format =
"{stateIcon} {artist} - {title} {elapsedTime:%M:%S}/{totalTime:%M:%S}";
format-stopped = " stopped";
state-icons = {
playing = "";
paused = "";
};
on-click = "${pkgs.foot}/bin/foot -e ${pkgs.ncmpcpp}/bin/ncmpcpp";
};
"custom/ds-battery" = {
return-type = "json";
exec = "${ds-battery}/bin/ds-battery.sh";
escape = "true";
};
"custom/blank" = { format = " "; };
}];
style = ''
@define-color foreground #${colors.base06};
@define-color background rgba(${backgroundColorRGB},${backgroundAlpha});
@define-color box-bg #${colors.base01};
@define-color workspace-bg #${colors.base00};
* {
font-family: ${font};
font-size: ${fontSize};
}
window#waybar {
background: @background;
color: @foreground;
}
#wireplumber,
#mpd,
#custom-waybar-mpris,
#custom-ds-battery,
#window,
#keyboard-state,
#tray,
#clock {
background: @box-bg;
padding: 0px 10px 0px 10px;
margin: 5px 10px 5px 0px;
border-radius: 10px;
}
#wireplumber {
margin: 5px 4px 5px 0px;
border-radius: 10px 0px 0px 10px;
}
#mpd {
border-radius: 0px 10px 10px 0px;
}
#tray, #clock {
margin: 5px 0px 5px 0px;
}
window#waybar.empty #window {
background: @background;
}
#workspaces {
margin: 5px 0px 5px 0px;
padding-left: 10px;
}
#workspaces button {
color: @foreground;
background: @box-bg;
padding: 0px 5px;
}
#workspaces button:last-child {
background: @box-bg;
border-radius: 0px 10px 10px 0px;
}
#workspaces button:first-child {
background: @box-bg;
border-radius: 10px 0px 0px 10px;
}
#workspaces button:only-child {
background: @box-bg;
border-radius: 10px 10px 10px 10px;
}
#workspaces button.active {
color: @foreground;
background: @box-bg;
font-weight: bold;
}
#workspaces button.unfocused {
color: @foreground;
background: @box-bg;
}
'';
};
}