waybar: improve spacing in waybar scratchpad

This commit is contained in:
Aly Raffauf 2024-05-11 00:58:33 -04:00
parent ad812c7232
commit 01d3f9d6d7
3 changed files with 10 additions and 4 deletions

View file

@ -28,8 +28,14 @@
"update.mode" = "none"; "update.mode" = "none";
"window.menuBarVisibility" = "hidden"; "window.menuBarVisibility" = "hidden";
"window.zoomPerWindow" = false; "window.zoomPerWindow" = false;
"workbench.colorTheme" = if config.alyraffauf.desktop.theme.colors.preferDark then "Catppuccin Macchiato" else "Catppuccin Latte"; "workbench.colorTheme" =
"workbench.iconTheme" = if config.alyraffauf.desktop.theme.colors.preferDark then "catppuccin-macchiato" else "catppuccin-latte"; if config.alyraffauf.desktop.theme.colors.preferDark
then "Catppuccin Macchiato"
else "Catppuccin Latte";
"workbench.iconTheme" =
if config.alyraffauf.desktop.theme.colors.preferDark
then "catppuccin-macchiato"
else "catppuccin-latte";
"workbench.preferredDarkColorTheme" = "Catppuccin Macchiato"; "workbench.preferredDarkColorTheme" = "Catppuccin Macchiato";
"workbench.preferredLightColorTheme" = "Catppuccin Latte"; "workbench.preferredLightColorTheme" = "Catppuccin Latte";
}; };

View file

@ -157,7 +157,7 @@
"max-length" = 100; "max-length" = 100;
}; };
"sway/scratchpad" = { "sway/scratchpad" = {
"format" = "{icon} {count}"; "format" = "{icon} {count}";
"show-empty" = false; "show-empty" = false;
"format-icons" = ["" ""]; "format-icons" = ["" ""];
"tooltip" = true; "tooltip" = true;

View file

@ -39,7 +39,7 @@
programs.waybar = { programs.waybar = {
settings = { settings = {
mainBar = { mainBar = {
modules-left = ["sway/workspaces" "sway/scratchpad" "sway/mode" ]; modules-left = ["sway/workspaces" "sway/scratchpad" "sway/mode"];
}; };
}; };
}; };