mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-05-13 06:35:15 +00:00
little changes
This commit is contained in:
parent
1201f12d86
commit
680ef57c3b
4 changed files with 25 additions and 25 deletions
machines
modules
|
@ -59,12 +59,7 @@ in
|
|||
qt = on; # QT APPS
|
||||
stylix = on // {
|
||||
icon = "adwaita";
|
||||
cursor = with config.lib.stylix.colors.withHashtag; {
|
||||
size = 24;
|
||||
bg = "${base08}";
|
||||
ol = "${base00}";
|
||||
ac = "${base08}";
|
||||
};
|
||||
cursor.size = 24;
|
||||
};
|
||||
};
|
||||
wm = {
|
||||
|
|
|
@ -61,12 +61,7 @@ in
|
|||
kvantum = off;
|
||||
stylix = on // {
|
||||
icon = "adwaita";
|
||||
cursor = with config.lib.stylix.colors.withHashtag; {
|
||||
size = 16;
|
||||
bg = "${base0E}";
|
||||
ol = "${base00}";
|
||||
ac = "${base0E}";
|
||||
};
|
||||
cursor.size = 16;
|
||||
};
|
||||
};
|
||||
wm = {
|
||||
|
|
|
@ -16,12 +16,7 @@ in
|
|||
module.themes.stylix = {
|
||||
enable = mkBool false;
|
||||
icon = mkStr "breeze";
|
||||
cursor = with config.lib.stylix.colors.withHashtag; {
|
||||
size = mkInt 12;
|
||||
bg = mkStr "${base04}";
|
||||
ol = mkStr "${base00}";
|
||||
ac = mkStr "${base04}";
|
||||
};
|
||||
cursor.size = mkInt 12;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -40,18 +35,33 @@ in
|
|||
cursor = with inputs.cursors.packages.${pkgs.system}; {
|
||||
size = cfg.cursor.size;
|
||||
name = "GoogleDot-Custom";
|
||||
package = google-cursor.override {
|
||||
background_color = cfg.cursor.bg;
|
||||
outline_color = cfg.cursor.ol;
|
||||
accent_color = cfg.cursor.ac;
|
||||
};
|
||||
package =
|
||||
let
|
||||
mode =
|
||||
with config.lib.stylix.colors.withHashtag;
|
||||
if x.is == "laptop" then
|
||||
{
|
||||
background_color = "${base08}";
|
||||
outline_color = "${base00}";
|
||||
accent_color = "${base08}";
|
||||
}
|
||||
else if x.is == "desktop" then
|
||||
{
|
||||
background_color = "${base0E}";
|
||||
outline_color = "${base00}";
|
||||
accent_color = "${base0E}";
|
||||
}
|
||||
else
|
||||
{ };
|
||||
in
|
||||
google-cursor.override mode;
|
||||
};
|
||||
iconTheme = on // {
|
||||
dark = "Papirus-Dark";
|
||||
light = "Papirus-Light";
|
||||
package = with pkgs; papirus-icon-theme.override { color = cfg.icon; };
|
||||
};
|
||||
fonts = with config.stylix.fonts; {
|
||||
fonts = rec {
|
||||
monospace = {
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
package = with pkgs.nerd-fonts; jetbrains-mono;
|
||||
|
|
|
@ -31,7 +31,7 @@ in
|
|||
tlp = on // {
|
||||
settings = {
|
||||
# battery
|
||||
START_CHARGE_THRESH_BAT0 = 80;
|
||||
START_CHARGE_THRESH_BAT0 = 95;
|
||||
STOP_CHARGE_THRESH_BAT0 = 100;
|
||||
|
||||
# platform
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue