Skip to content

Instantly share code, notes, and snippets.

@colemickens
Created July 2, 2020 22:58
Show Gist options
  • Save colemickens/f50ff807d4014c8d850ec9a4ee573228 to your computer and use it in GitHub Desktop.
Save colemickens/f50ff807d4014c8d850ec9a4ee573228 to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
{
enable = true;
style = pkgs.lib.readFile ./waybar-config.css;
systemd = {
enable = true;
withSwayIntegration = true;
};
settings = [{
layer = "top";
position = "top";
height = 26;
output = [ "DP-1" "eDP-1" "HEADLESS-1" ];
modules-left = [ "sway/workspaces" "sway/mode" ];
modules-center = [ "sway/window" ];
modules-right = [
"idle_inhibitor"
"pulseaudio"
"network"
"cpu"
"memory"
"backlight"
"tray"
# "battery" # not in default modules, throws warning, but hen again so does smth else
"clock"
];
modules = {
"sway/workspaces" = {
all-outputs = true;
};
};
# "sway/mode" = { tooltip = false; };
# "sway/window" = { max-length = 120; };
# "idle_inhibitor" = { format = "{icon}"; };
# };
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment