mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
waybar: improve spacing in waybar scratchpad
This commit is contained in:
parent
ad812c7232
commit
01d3f9d6d7
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue