22 rice
This commit is contained in:
@@ -13,7 +13,7 @@ in
|
|||||||
./system-modules/networking.nix
|
./system-modules/networking.nix
|
||||||
./system-modules/virtualisation.nix
|
./system-modules/virtualisation.nix
|
||||||
./system-modules/sshd.nix
|
./system-modules/sshd.nix
|
||||||
./system-modules/syncthing.nix
|
# ./system-modules/syncthing.nix
|
||||||
./system-modules/hsmw.nix
|
./system-modules/hsmw.nix
|
||||||
./system-modules/docker.nix
|
./system-modules/docker.nix
|
||||||
./system-modules/health_reminder.nix
|
./system-modules/health_reminder.nix
|
||||||
|
|||||||
@@ -39,13 +39,17 @@
|
|||||||
file-picker.hidden = false;
|
file-picker.hidden = false;
|
||||||
middle-click-paste = false;
|
middle-click-paste = false;
|
||||||
cursorline = true;
|
cursorline = true;
|
||||||
indent-guides.render = true;
|
indent-guides = {
|
||||||
|
render = true;
|
||||||
|
character = "╎";
|
||||||
|
};
|
||||||
lsp.display-inlay-hints = true;
|
lsp.display-inlay-hints = true;
|
||||||
statusline.center = [ "position-percentage" ];
|
statusline.center = [ "position-percentage" ];
|
||||||
true-color = true;
|
true-color = true;
|
||||||
whitespace.characters = {
|
whitespace.characters = {
|
||||||
newline = "↴";
|
newline = "↴";
|
||||||
tab = "⇥";
|
tab = "⇥";
|
||||||
|
skip-levels = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -60,9 +64,9 @@
|
|||||||
"fg" = white.dark;
|
"fg" = white.dark;
|
||||||
"modifiers" = [ "italic" ];
|
"modifiers" = [ "italic" ];
|
||||||
};
|
};
|
||||||
"constant" = cyan.bright;
|
"constant" = yellow.base;
|
||||||
"constant.character.escape" = yellow.bright;
|
"constant.character.escape" = yellow.bright;
|
||||||
"constant.numeric" = blue.bright;
|
"constant.numeric" = green.bright;
|
||||||
"constructor" = magenta.bright;
|
"constructor" = magenta.bright;
|
||||||
"debug" = yellow.dark;
|
"debug" = yellow.dark;
|
||||||
"diagnostic.modifiers" = [ "underlined" ];
|
"diagnostic.modifiers" = [ "underlined" ];
|
||||||
|
|||||||
@@ -32,10 +32,8 @@ lib.mkIf (user != "tv")
|
|||||||
color7 = rice.color.white.base;
|
color7 = rice.color.white.base;
|
||||||
color15 = rice.color.white.bright;
|
color15 = rice.color.white.bright;
|
||||||
background_opacity = builtins.toString rice.transparency;
|
background_opacity = builtins.toString rice.transparency;
|
||||||
transparency = true;
|
|
||||||
scroll_multiplier = 9;
|
|
||||||
window_padding_width = 5;
|
window_padding_width = 5;
|
||||||
window_padding_height = 5;
|
remember_window_size = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -174,7 +174,8 @@ lib.mkIf (user != "tv")
|
|||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: rgba(${rice.lib.hex-to-rgb-comma-string rice.color.background},${builtins.toString rice.transparency});
|
background-color: rgba(${rice.lib.hex-to-rgb-comma-string rice.color.background},${builtins.toString rice.transparency});
|
||||||
transition-duration: 2s;
|
transition-duration: 5s;
|
||||||
|
transition-property: background-color;
|
||||||
/* border: ${builtins.toString rice.border-width}px solid rgb(${rice.lib.hex-to-rgb-comma-string rice.color.blue.base}); */
|
/* border: ${builtins.toString rice.border-width}px solid rgb(${rice.lib.hex-to-rgb-comma-string rice.color.blue.base}); */
|
||||||
/* margin: ${builtins.toString rice.gap-size}px; */
|
/* margin: ${builtins.toString rice.gap-size}px; */
|
||||||
/* border-radius: ${builtins.toString rice.rounding}px; */
|
/* border-radius: ${builtins.toString rice.rounding}px; */
|
||||||
@@ -202,18 +203,18 @@ lib.mkIf (user != "tv")
|
|||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.white.dark});
|
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.white.dark});
|
||||||
padding-left: 10px;
|
padding-left: 15px;
|
||||||
padding-right: 10px;
|
padding-right: 15px;
|
||||||
border-radius: ${builtins.toString rice.rounding}px;
|
border-radius: ${builtins.toString rice.rounding}px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.cyan.bright});
|
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.background});
|
||||||
|
background-color: rgba(${rice.lib.hex-to-rgb-comma-string rice.color.cyan.base},${builtins.toString rice.transparency});
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.background});
|
color: rgb(${rice.lib.hex-to-rgb-comma-string rice.color.cyan.bright});
|
||||||
background-color: rgba(${rice.lib.hex-to-rgb-comma-string rice.color.cyan.bright},${builtins.toString rice.transparency});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
|
|||||||
Reference in New Issue
Block a user