From 3678c2da69edca53a914f917c818e532f5736453 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 10 Apr 2019 21:39:41 -0700 Subject: polybar: add more modules --- linux.nix | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) (limited to 'linux.nix') diff --git a/linux.nix b/linux.nix index 1000c4f..04c8236 100644 --- a/linux.nix +++ b/linux.nix @@ -58,10 +58,10 @@ in tray-offset-y = 0; tray-padding = 0; tray-scale = 1; - module-margin = 4; + module-margin = 1; modules-left = "ewmh"; modules-center = "date"; - modules-right = "battery"; + modules-right = [ "ethernet" "wifi" "battery" "volume" "cpu" ]; }; "module/date" = { type = "internal/date"; @@ -76,17 +76,42 @@ in adapter = "AC"; full-at = 99; }; + "module/volume" = { + type = "internal/alsa"; + interval = 5; + label-volume = "vol: %percentage%% "; + }; "module/ewmh" = { type = "internal/xworkspaces"; - pin-workspaces = true; enable-click = true; enable-scroll = false; }; + "module/ethernet" = { + type = "internal/network"; + interface = "enp1s0"; + label-connected = "eth: %upspeed:9%↑ %downspeed%↓ "; + label-disconnected = "eth down"; + }; + "module/wifi" = { + type = "internal/network"; + interface = "wlan1"; + label-connected = "wifi up: %upspeed% down: %downspeed%"; + label-disconnected = "wifi down"; + }; + "module/cpu" = { + type = "internal/cpu"; + label = "cpu: %percentage%%"; + }; + "module/mail" = { + # doesn't work, can't find "notmuch", idk why + type = "custom/script"; + exec = "notmuch count tag:inbox and tag:unread"; + label = "mail: %output%"; + }; }; script = '' #!/usr/bin/env sh systemctl --user daemon-reload - pasystray & polybar top & ''; }; -- cgit v1.2.3