feat: synchronize, hibernate

This commit is contained in:
Kat Inskip 2025-10-22 15:31:51 -07:00
parent 6bb963d9ad
commit a4b63004fb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
18 changed files with 48 additions and 110 deletions

View file

@ -113,7 +113,6 @@ in {
# konawall
enabled = false;
directory = "";
enableMultiMonitorDirectories = false;
setWallpaperOnAllMonitors = true;
defaultWallpaper = "";
fillMode = "crop";
@ -197,8 +196,8 @@ in {
preferredPlayer = "";
};
ui = {
fontDefault = config.stylix.fonts.sansSerif;
fontFixed = config.stylix.fonts.monospace;
fontDefault = "CozetteCrossedSevenVector";
fontFixed = "CozetteCrossedSevenVector";
fontDefaultScale = 1;
fontFixedScale = 1;
monitorsScaling = [

View file

@ -51,19 +51,6 @@ _: {
];
open-on-workspace = "chat";
}
{
matches = [
{
app-id = "steam";
title = "^notificationtoasts_\d+_desktop$";
}
];
default-floating-position = {
x = 10;
y = 10;
relative-to = "bottom-right";
};
}
{
matches = [
{app-id = "^steam_app_default$";}

View file

@ -22,22 +22,22 @@
terminal = 0.9;
popups = 0.8;
};
polarity = "dark";
fonts = {
sansSerif = {
name = "Jost";
package = pkgs.jost;
name = "CozetteCrossedSevenVector";
package = pkgs.cozette;
};
serif = {
name = "Libre Baskerville";
package = pkgs.libre-baskerville;
};
monospace = {
name = "Monaspace Krypton";
package = pkgs.monaspace;
name = "CozetteCrossedSevenVector";
package = pkgs.cozette;
};
};
autoEnable = true;
polarity = "light";
base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
};
}

View file

@ -3,9 +3,6 @@ _: {
enable = true;
settings = {
logo = {
type = "chafa";
source = ./nixowos.png;
height = 32;
padding = {
right = 2;
};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

View file

@ -1,11 +0,0 @@
{
pkgs,
lib,
...
}: let
inherit (lib.meta) getExe;
in {
programs.zsh.shellAliases = {
uwufetch = "${getExe pkgs.fastfetch} --chafa ${./nixowos.png} --logo-height 32";
};
}

View file

@ -1,35 +0,0 @@
{
inputs,
pkgs,
...
}: {
programs.wezterm = {
enable = false;
package = inputs.wezterm.outputs.packages.${pkgs.system}.default;
extraConfig = ''
local wezterm = require 'wezterm';
local config = {}
config.front_end = "OpenGL"
config.font = wezterm.font_with_fallback({
"Monaspace Krypton",
"JetBrains Mono",
"Noto Color Emoji",
"Symbols Nerd Font Mono",
})
config.window_padding = {
left = 8,
right = 8,
top = 8,
bottom = 8,
}
config.use_fancy_tab_bar = true
config.tab_bar_at_bottom = true
config.hide_mouse_cursor_when_typing = false
config.window_decorations = "TITLE | RESIZE"
config.warn_about_missing_glyphs = false
config.font_size = 12.0
config.check_for_updates = false
return config
'';
};
}