Created
July 2, 2020 22:58
-
-
Save colemickens/f50ff807d4014c8d850ec9a4ee573228 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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