dotfiles/modules/desktop/polybar/default.nix

190 lines
5.5 KiB
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
home-manager.users.moritz = {
2021-09-09 21:55:28 +02:00
services.polybar = {
enable = true;
2021-10-06 15:35:31 +02:00
package = pkgs.polybar.override { pulseSupport = true; };
script = ''
for m in $(polybar --list-monitors | ${pkgs.coreutils}/bin/cut -d":" -f1); do
MONITOR=$m polybar --reload bottom &
done
2021-11-11 18:34:54 +01:00
'';
2022-02-07 18:13:55 +01:00
config = let
colors = {
background = "#282a36";
current-line = "#44475a";
foreground = "#f8f8f2";
comment = "#6272a4";
cyan = "#8be9fd";
green = "#50fa7b";
orange = "#ffb86c";
pink = "#ff79c6";
purple = "#bd93f9";
red = "#ff5555";
yellow = "#f1fa8c";
};
in {
"global/wm" = { margin-top = 5; };
"bar/bottom" = {
# position
monitor = "\${env:MONITOR}";
bottom = true;
width = "100%:-20";
heigth = 25;
background = colors.background;
foreground = colors.foreground;
radius = 10;
offset-x = 10;
offset-y = 5;
2022-02-11 22:22:50 +01:00
padding = 1;
2022-02-07 18:13:55 +01:00
line-size = 3;
line-color = colors.pink;
2022-02-11 22:22:50 +01:00
module-margin = 1;
separator = "|";
2022-02-07 18:13:55 +01:00
font-0 = "FiraCode Nerd Font:size=10;0";
modules-left = "cpu memory wlan eth battery";
modules-center = "bspwm";
modules-right = "pulseaudio date";
2022-02-15 16:43:03 +01:00
tray-position = "right";
tray-padding = 2;
2022-02-07 18:13:55 +01:00
wm-restack = "bspwm";
cursor-click = "pointer";
cursor-scroll = "ns-resize";
};
"module/battery" = {
type = "internal/battery";
battery = "BATT";
adapter = "ACAD";
time-format = "%H:%M";
format-charging = "<animation-charging> <label-charging>";
2022-02-11 22:22:50 +01:00
format-charging-foreground = colors.green;
2022-02-07 18:13:55 +01:00
format-discharging = "<animation-discharging> <label-discharging>";
2022-02-11 22:22:50 +01:00
format-discharging-foreground = colors.red;
2022-02-07 18:13:55 +01:00
format-full = "<label-full>";
2022-02-11 22:22:50 +01:00
format-full-foreground = colors.green;
2022-02-07 18:13:55 +01:00
label-charging = "%percentage%% %time% remaining";
label-discharging = "%percentage%% %time% remaining";
label-full = "Fully charged";
animation-charging-0 = "";
animation-charging-1 = "";
animation-charging-2 = "";
animation-charging-3 = "";
animation-charging-4 = "";
animation-charging-framerate = 500;
animation-discharging-0 = "";
animation-discharging-1 = "";
animation-discharging-2 = "";
animation-discharging-3 = "";
animation-discharging-4 = "";
animation-discharging-framerate = 500;
};
"module/bspwm" = {
type = "internal/bspwm";
label-focused = "";
label-focused-foreground = colors.purple;
label-focused-padding = 1;
label-occupied = "";
label-occupied-foreground = colors.comment;
label-occupied-padding = 1;
label-urgent = "";
label-urgent-foreground = colors.red;
label-urgent-padding = 1;
label-empty = "";
label-empty-foreground = colors.comment;
label-empty-padding = 1;
label-separator = " ";
label-separator-foreground = colors.cyan;
label-separator-padding = 1;
pin-workspaces = true;
};
"module/cpu" = {
type = "internal/cpu";
interval = 2;
format-prefix = " ";
format-prefix-foreground = colors.red;
label = "%percentage:2%%";
};
"module/date" = {
type = "internal/date";
interval = 5;
date = "%A";
date-alt = "%Y-%m-%d";
time = "%H:%M";
time-alt = "%H:%M:%S";
label = "%date% %time%";
click-middle = "${pkgs.kitty}/bin/kitty cal -m3";
};
"module/memory" = {
type = "internal/memory";
interval = 2;
format-prefix = " ";
format-prefix-foreground = colors.green;
label = "%percentage_used%%";
};
"module/pulseaudio" = {
type = "internal/pulseaudio";
format-volume = "<ramp-volume> <label-volume>";
format-underline = colors.orange;
label-volume = "%percentage%%";
label-muted = " muted";
label-muted-foreground = colors.red;
ramp-volume-0 = "";
2022-02-11 22:22:50 +01:00
ramp-volume-0-foreground = colors.green;
ramp-volume-1 = "";
ramp-volume-1-foreground = colors.green;
ramp-volume-2 = "奔";
ramp-volume-2-foreground = colors.green;
ramp-volume-3 = "";
ramp-volume-3-foreground = colors.orange;
ramp-volume-4 = "";
ramp-volume-4-foreground = colors.red;
2022-02-07 18:13:55 +01:00
click-middle = "${pkgs.pavucontrol}/bin/pavucontrol";
};
"module/eth" = {
type = "internal/network";
interface = "enp42s0";
interval = 3;
format-connected = "<label-connected>";
label-connected = " %upspeed% %downspeed%";
};
"module/wlan" = {
type = "internal/network";
interface = "wlp1s0";
interval = 3;
format-connected = "<label-connected>";
label-connected = " %upspeed% %downspeed%";
};
};
2021-09-09 21:55:28 +02:00
};
};
2021-11-11 18:34:54 +01:00
}