diff --git a/flake.lock b/flake.lock index 6facc81..a43a3a8 100644 --- a/flake.lock +++ b/flake.lock @@ -37,6 +37,20 @@ } }, "flake-compat_2": { + "locked": { + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "revCount": 69, + "type": "tarball", + "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz" + } + }, + "flake-compat_3": { "flake": false, "locked": { "lastModified": 1650374568, @@ -91,7 +105,7 @@ }, "flake-utils_2": { "inputs": { - "systems": "systems_2" + "systems": "systems_3" }, "locked": { "lastModified": 1694529238, @@ -182,6 +196,29 @@ "type": "github" } }, + "nixcord": { + "inputs": { + "flake-compat": "flake-compat_2", + "nixpkgs": [ + "nixpkgs" + ], + "systems": "systems_2", + "treefmt-nix": "treefmt-nix" + }, + "locked": { + "lastModified": 1743170370, + "narHash": "sha256-v8ZdXs0fj0LG2jH0NJvfeMt0b+qJYxbN+fnto4kqdyM=", + "owner": "kaylorben", + "repo": "nixcord", + "rev": "b969aa7b1e1925935eda22da01ffbf028c7c2a51", + "type": "github" + }, + "original": { + "owner": "kaylorben", + "repo": "nixcord", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1742800061, @@ -237,6 +274,7 @@ "hardware": "hardware", "home-manager": "home-manager", "nix-flatpak": "nix-flatpak", + "nixcord": "nixcord", "nixpkgs": "nixpkgs", "snowfall-lib": "snowfall-lib", "sops-nix": "sops-nix" @@ -244,7 +282,7 @@ }, "snowfall-lib": { "inputs": { - "flake-compat": "flake-compat_2", + "flake-compat": "flake-compat_3", "flake-utils-plus": "flake-utils-plus", "nixpkgs": [ "nixpkgs" @@ -309,8 +347,43 @@ "type": "github" }, "original": { + "id": "systems", + "type": "indirect" + } + }, + "systems_3": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "owner": "nix-systems", "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "treefmt-nix": { + "inputs": { + "nixpkgs": [ + "nixcord", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1742370146, + "narHash": "sha256-XRE8hL4vKIQyVMDXykFh4ceo3KSpuJF3ts8GKwh5bIU=", + "owner": "numtide", + "repo": "treefmt-nix", + "rev": "adc195eef5da3606891cedf80c0d9ce2d3190808", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "treefmt-nix", "type": "github" } }, diff --git a/flake.nix b/flake.nix index 601bf00..206259b 100644 --- a/flake.nix +++ b/flake.nix @@ -37,6 +37,11 @@ # Apps ghostty = {url = "github:ghostty-org/ghostty";}; + + nixcord = { + url = "github:kaylorben/nixcord"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; nixConfig = { diff --git a/homes/x86_64-linux/jo@puzzlevision/default.nix b/homes/x86_64-linux/jo@puzzlevision/default.nix index b9ad81b..1b13fe9 100644 --- a/homes/x86_64-linux/jo@puzzlevision/default.nix +++ b/homes/x86_64-linux/jo@puzzlevision/default.nix @@ -1,4 +1,13 @@ -{pkgs, ...}: { +{ + pkgs, + lib, + inputs, + ... +}: { + imports = [ + inputs.nixcord.homeManagerModules.nixcord + ]; + puzzlevision = { themes.catppuccin = { gtk.enable = true; @@ -9,6 +18,8 @@ apps.zed.enable = true; }; + home.file."~/.local/share/fonts/Unknown\ Vendor/qwerasd205/AnnotationMono/AnnotationMono-VF.ttf".source = lib.snowfall.fs.get-file "resources/fonts/AnnotationMono/variable/AnnotationMono-VF.ttf"; + home.file."~/.config/Yubico/u2f_keys".text = '' jo:gtKwCQKVw5O4IkWg8J8o7vHIo3hStmOqVcnmk97E335DwHnPUMIDTMnD46qEn/1tucTZlYfGABfzVVG+iYeUOA==,fVRFZb9iBiqjOXvk5Gm9ygO/O4huEUR1Uq3DGBlnS1RtqqK0shif8aOlNLkmn8Xe9+x4HYIeNEX4fc8Z7Y2Hgw==,es256,+presence ''; @@ -26,26 +37,34 @@ packages = []; }; - # TODO: look at git-sync for syncing stuff like obsidian vaults. - programs.git-credential-oauth.enable = true; + programs = { + # TODO: look at git-sync for syncing stuff like obsidian vaults. + git-credential-oauth.enable = true; + + nixcord = { + enable = true; + config = { + themeLinks = [ + "https://catppuccin.github.io/discord/dist/catppuccin-macchiato-blue.theme.css" + ]; + frameless = true; + }; + }; + }; # Declare user packages. home.packages = with pkgs; [ ### General qflipper - wineWowPackages.waylandFull - vesktop - lunar-client + labymod-launcher steam - g4music - bitwarden-desktop youtube-music ungoogled-chromium firefox ### Development - avra - avrdude + #avra + #avrdude jetbrains.phpstorm git bun @@ -54,7 +73,6 @@ nixd bruno deno - carapace ### Work teams-for-linux diff --git a/resources/fonts/AnnotationMono/.DS_Store b/resources/fonts/AnnotationMono/.DS_Store new file mode 100644 index 0000000..b42d07c Binary files /dev/null and b/resources/fonts/AnnotationMono/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/otf/.DS_Store b/resources/fonts/AnnotationMono/otf/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/otf/Black.otf b/resources/fonts/AnnotationMono/otf/Black.otf new file mode 100644 index 0000000..154c226 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Black.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Black_Oblique.otf b/resources/fonts/AnnotationMono/otf/Black_Oblique.otf new file mode 100644 index 0000000..602638b Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Black_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Bold.otf b/resources/fonts/AnnotationMono/otf/Bold.otf new file mode 100644 index 0000000..e8aaf9c Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Bold.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Bold_Oblique.otf b/resources/fonts/AnnotationMono/otf/Bold_Oblique.otf new file mode 100644 index 0000000..f632417 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Bold_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/DemiBold.otf b/resources/fonts/AnnotationMono/otf/DemiBold.otf new file mode 100644 index 0000000..67323bf Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/DemiBold.otf differ diff --git a/resources/fonts/AnnotationMono/otf/DemiBold_Oblique.otf b/resources/fonts/AnnotationMono/otf/DemiBold_Oblique.otf new file mode 100644 index 0000000..8aa7bd6 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/DemiBold_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraBlack.otf b/resources/fonts/AnnotationMono/otf/ExtraBlack.otf new file mode 100644 index 0000000..4a122df Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraBlack.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraBlack_Oblique.otf b/resources/fonts/AnnotationMono/otf/ExtraBlack_Oblique.otf new file mode 100644 index 0000000..0903a88 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraBlack_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraBold.otf b/resources/fonts/AnnotationMono/otf/ExtraBold.otf new file mode 100644 index 0000000..167944b Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraBold.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraBold_Oblique.otf b/resources/fonts/AnnotationMono/otf/ExtraBold_Oblique.otf new file mode 100644 index 0000000..f35e838 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraBold_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraLight.otf b/resources/fonts/AnnotationMono/otf/ExtraLight.otf new file mode 100644 index 0000000..3a8bf37 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraLight.otf differ diff --git a/resources/fonts/AnnotationMono/otf/ExtraLight_Oblique.otf b/resources/fonts/AnnotationMono/otf/ExtraLight_Oblique.otf new file mode 100644 index 0000000..5b711f4 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/ExtraLight_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Light.otf b/resources/fonts/AnnotationMono/otf/Light.otf new file mode 100644 index 0000000..32fe8fa Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Light.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Light_Oblique.otf b/resources/fonts/AnnotationMono/otf/Light_Oblique.otf new file mode 100644 index 0000000..221fa0d Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Light_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Medium.otf b/resources/fonts/AnnotationMono/otf/Medium.otf new file mode 100644 index 0000000..a1997c6 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Medium.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Medium_Oblique.otf b/resources/fonts/AnnotationMono/otf/Medium_Oblique.otf new file mode 100644 index 0000000..2bd3a40 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Medium_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Regular.otf b/resources/fonts/AnnotationMono/otf/Regular.otf new file mode 100644 index 0000000..bcf8506 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Regular.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Regular_Oblique.otf b/resources/fonts/AnnotationMono/otf/Regular_Oblique.otf new file mode 100644 index 0000000..61c9389 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Regular_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Thin.otf b/resources/fonts/AnnotationMono/otf/Thin.otf new file mode 100644 index 0000000..aa2c6c4 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Thin.otf differ diff --git a/resources/fonts/AnnotationMono/otf/Thin_Oblique.otf b/resources/fonts/AnnotationMono/otf/Thin_Oblique.otf new file mode 100644 index 0000000..bdf3774 Binary files /dev/null and b/resources/fonts/AnnotationMono/otf/Thin_Oblique.otf differ diff --git a/resources/fonts/AnnotationMono/ttf/.DS_Store b/resources/fonts/AnnotationMono/ttf/.DS_Store new file mode 100644 index 0000000..b229d88 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/ttf/Black.ttf b/resources/fonts/AnnotationMono/ttf/Black.ttf new file mode 100644 index 0000000..70e7511 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Black.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Black_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Black_Oblique.ttf new file mode 100644 index 0000000..96264ae Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Black_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Bold.ttf b/resources/fonts/AnnotationMono/ttf/Bold.ttf new file mode 100644 index 0000000..c1d97ae Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Bold.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Bold_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Bold_Oblique.ttf new file mode 100644 index 0000000..99e5df5 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Bold_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/DemiBold.ttf b/resources/fonts/AnnotationMono/ttf/DemiBold.ttf new file mode 100644 index 0000000..20adc26 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/DemiBold.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/DemiBold_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/DemiBold_Oblique.ttf new file mode 100644 index 0000000..4be57b0 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/DemiBold_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraBlack.ttf b/resources/fonts/AnnotationMono/ttf/ExtraBlack.ttf new file mode 100644 index 0000000..dd53289 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraBlack.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraBlack_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/ExtraBlack_Oblique.ttf new file mode 100644 index 0000000..0fa708e Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraBlack_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraBold.ttf b/resources/fonts/AnnotationMono/ttf/ExtraBold.ttf new file mode 100644 index 0000000..d9bc77e Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraBold.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraBold_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/ExtraBold_Oblique.ttf new file mode 100644 index 0000000..85f26f5 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraBold_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraLight.ttf b/resources/fonts/AnnotationMono/ttf/ExtraLight.ttf new file mode 100644 index 0000000..8e0c4b8 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraLight.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/ExtraLight_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/ExtraLight_Oblique.ttf new file mode 100644 index 0000000..1d849ff Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/ExtraLight_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Light.ttf b/resources/fonts/AnnotationMono/ttf/Light.ttf new file mode 100644 index 0000000..7f9b7e1 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Light.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Light_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Light_Oblique.ttf new file mode 100644 index 0000000..72071a4 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Light_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Medium.ttf b/resources/fonts/AnnotationMono/ttf/Medium.ttf new file mode 100644 index 0000000..183e629 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Medium.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Medium_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Medium_Oblique.ttf new file mode 100644 index 0000000..4d790e2 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Medium_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Regular.ttf b/resources/fonts/AnnotationMono/ttf/Regular.ttf new file mode 100644 index 0000000..bf3e94c Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Regular.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Regular_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Regular_Oblique.ttf new file mode 100644 index 0000000..19c0ebb Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Regular_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Thin.ttf b/resources/fonts/AnnotationMono/ttf/Thin.ttf new file mode 100644 index 0000000..849fc87 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Thin.ttf differ diff --git a/resources/fonts/AnnotationMono/ttf/Thin_Oblique.ttf b/resources/fonts/AnnotationMono/ttf/Thin_Oblique.ttf new file mode 100644 index 0000000..9111e17 Binary files /dev/null and b/resources/fonts/AnnotationMono/ttf/Thin_Oblique.ttf differ diff --git a/resources/fonts/AnnotationMono/variable/.DS_Store b/resources/fonts/AnnotationMono/variable/.DS_Store new file mode 100644 index 0000000..7b32db0 Binary files /dev/null and b/resources/fonts/AnnotationMono/variable/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/variable/AnnotationMono-VF.ttf b/resources/fonts/AnnotationMono/variable/AnnotationMono-VF.ttf new file mode 100644 index 0000000..bf115a1 Binary files /dev/null and b/resources/fonts/AnnotationMono/variable/AnnotationMono-VF.ttf differ diff --git a/resources/fonts/AnnotationMono/variable_woff2/.DS_Store b/resources/fonts/AnnotationMono/variable_woff2/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/resources/fonts/AnnotationMono/variable_woff2/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/variable_woff2/AnnotationMono-VF.woff2 b/resources/fonts/AnnotationMono/variable_woff2/AnnotationMono-VF.woff2 new file mode 100644 index 0000000..4baaf6a Binary files /dev/null and b/resources/fonts/AnnotationMono/variable_woff2/AnnotationMono-VF.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/.DS_Store b/resources/fonts/AnnotationMono/woff2/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/.DS_Store differ diff --git a/resources/fonts/AnnotationMono/woff2/Black.woff2 b/resources/fonts/AnnotationMono/woff2/Black.woff2 new file mode 100644 index 0000000..0ef722a Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Black.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Black_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Black_Oblique.woff2 new file mode 100644 index 0000000..c15bb2a Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Black_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Bold.woff2 b/resources/fonts/AnnotationMono/woff2/Bold.woff2 new file mode 100644 index 0000000..77d116c Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Bold.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Bold_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Bold_Oblique.woff2 new file mode 100644 index 0000000..9a54b05 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Bold_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/DemiBold.woff2 b/resources/fonts/AnnotationMono/woff2/DemiBold.woff2 new file mode 100644 index 0000000..686a177 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/DemiBold.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/DemiBold_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/DemiBold_Oblique.woff2 new file mode 100644 index 0000000..9cd76f4 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/DemiBold_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraBlack.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraBlack.woff2 new file mode 100644 index 0000000..205e480 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraBlack.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraBlack_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraBlack_Oblique.woff2 new file mode 100644 index 0000000..a653be1 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraBlack_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraBold.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraBold.woff2 new file mode 100644 index 0000000..3c5ac0a Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraBold.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraBold_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraBold_Oblique.woff2 new file mode 100644 index 0000000..d3454a2 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraBold_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraLight.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraLight.woff2 new file mode 100644 index 0000000..e492dee Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraLight.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/ExtraLight_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/ExtraLight_Oblique.woff2 new file mode 100644 index 0000000..6a54792 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/ExtraLight_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Light.woff2 b/resources/fonts/AnnotationMono/woff2/Light.woff2 new file mode 100644 index 0000000..e609a96 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Light.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Light_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Light_Oblique.woff2 new file mode 100644 index 0000000..07087f0 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Light_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Medium.woff2 b/resources/fonts/AnnotationMono/woff2/Medium.woff2 new file mode 100644 index 0000000..ae0ae68 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Medium.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Medium_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Medium_Oblique.woff2 new file mode 100644 index 0000000..7cbe30e Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Medium_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Regular.woff2 b/resources/fonts/AnnotationMono/woff2/Regular.woff2 new file mode 100644 index 0000000..0ff71b1 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Regular.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Regular_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Regular_Oblique.woff2 new file mode 100644 index 0000000..271628b Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Regular_Oblique.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Thin.woff2 b/resources/fonts/AnnotationMono/woff2/Thin.woff2 new file mode 100644 index 0000000..7b69322 Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Thin.woff2 differ diff --git a/resources/fonts/AnnotationMono/woff2/Thin_Oblique.woff2 b/resources/fonts/AnnotationMono/woff2/Thin_Oblique.woff2 new file mode 100644 index 0000000..874418e Binary files /dev/null and b/resources/fonts/AnnotationMono/woff2/Thin_Oblique.woff2 differ