diff --git a/.config/linux/system/flake.lock b/.config/linux/system/flake.lock index 779071d..ac80460 100644 --- a/.config/linux/system/flake.lock +++ b/.config/linux/system/flake.lock @@ -1,5 +1,23 @@ { "nodes": { + "applefonts": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1708817447, + "narHash": "sha256-0B9vLw+L4Lg0EDtiyZRKwDmRaW/KAv2N0WEk+mHILFY=", + "ref": "refs/heads/main", + "rev": "aacb5fbf5906541d3d5b4d57cd130a4762701eb5", + "revCount": 1, + "type": "git", + "url": "https://git.voronind.com/voronind/nix_applefonts.git" + }, + "original": { + "type": "git", + "url": "https://git.voronind.com/voronind/nix_applefonts.git" + } + }, "dotfiles": { "flake": false, "locked": { @@ -17,6 +35,22 @@ } }, "nixpkgs": { + "locked": { + "lastModified": 1708655239, + "narHash": "sha256-ZrP/yACUvDB+zbqYJsln4iwotbH6CTZiTkANJ0AgDv4=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "cbc4211f0afffe6dfd2478a62615dd5175a13f9a", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { "locked": { "lastModified": 1707092692, "narHash": "sha256-ZbHsm+mGk/izkWtT4xwwqz38fdlwu7nUUKXTOmm4SyE=", @@ -34,8 +68,9 @@ }, "root": { "inputs": { + "applefonts": "applefonts", "dotfiles": "dotfiles", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs_2" } } }, diff --git a/.config/linux/system/flake.nix b/.config/linux/system/flake.nix index be351f6..ea6af91 100644 --- a/.config/linux/system/flake.nix +++ b/.config/linux/system/flake.nix @@ -1,13 +1,14 @@ { inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; dotfiles = { url = "git+https://git.voronind.com/voronind/linux.git"; flake = false; }; + applefonts.url = "git+https://git.voronind.com/voronind/nix_applefonts.git"; }; - outputs = { self, nixpkgs, dotfiles } @inputs: rec { + outputs = { self, nixpkgs, dotfiles, applefonts } @inputs: rec { # Constant values. nixosModules.const = { hashedPassword = "$y$j9T$oqCB16i5E2t1t/HAWaFd5.$tTaHtAcifXaDVpTcRv.yH2/eWKxKE9xM8KcqXHfHrD7"; # Use `mkpasswd`. @@ -24,6 +25,7 @@ ./module/common/Filesystem.nix ./module/common/Firefox.nix ./module/common/Firewall.nix + ./module/common/Font.nix ./module/common/Git.nix ./module/common/Kernel.nix ./module/common/Locale.nix diff --git a/.config/linux/system/module/common/Font.nix b/.config/linux/system/module/common/Font.nix new file mode 100644 index 0000000..e8ede32 --- /dev/null +++ b/.config/linux/system/module/common/Font.nix @@ -0,0 +1,6 @@ +{ pkgs, inputs, ... }: { + fonts.packages = with pkgs; [ + inputs.applefonts.packages.${pkgs.system}.default + (nerdfonts.override { fonts = [ "Terminus" ]; }) + ]; +} diff --git a/.gitignore b/.gitignore index 3360c7c..223ccc1 100644 --- a/.gitignore +++ b/.gitignore @@ -80,14 +80,3 @@ # User dirs. !/.config/user-dirs.dirs - -# Local configs. -!/.local/ -/.local/* -!/.local/share/ -/.local/share/* - -# Fonts. -!/.local/share/fonts/ -!/.local/share/fonts/** -/.local/share/fonts/**/.uuid diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Black.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Black.otf deleted file mode 100755 index e621e1b..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Black.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-BlackItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-BlackItalic.otf deleted file mode 100755 index b862613..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-BlackItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Bold.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Bold.otf deleted file mode 100755 index 025b25c..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Bold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-BoldItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-BoldItalic.otf deleted file mode 100755 index 77ee0c2..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-BoldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Heavy.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Heavy.otf deleted file mode 100755 index 8285164..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-HeavyItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-HeavyItalic.otf deleted file mode 100755 index c44f865..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-HeavyItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Light.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Light.otf deleted file mode 100755 index b25e3dc..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Light.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-LightItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-LightItalic.otf deleted file mode 100755 index 74b5e8b..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-LightItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Medium.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Medium.otf deleted file mode 100755 index b2f7dac..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-MediumItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-MediumItalic.otf deleted file mode 100755 index 918709e..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-MediumItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Regular.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Regular.otf deleted file mode 100755 index 09aaca9..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-RegularItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-RegularItalic.otf deleted file mode 100755 index 99e34f0..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-RegularItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Semibold.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Semibold.otf deleted file mode 100755 index b1e38ad..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-SemiboldItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-SemiboldItalic.otf deleted file mode 100755 index 7b65b53..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-SemiboldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Thin.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Thin.otf deleted file mode 100755 index e4ddd7f..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Thin.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-ThinItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-ThinItalic.otf deleted file mode 100755 index 0fb2d44..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-ThinItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-Ultralight.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-Ultralight.otf deleted file mode 100755 index 528c9fd..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-Ultralight.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Display-UltralightItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Display-UltralightItalic.otf deleted file mode 100755 index 37d146c..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Display-UltralightItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Bold.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Bold.otf deleted file mode 100755 index 840d810..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Bold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-BoldItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-BoldItalic.otf deleted file mode 100755 index 3cddfc4..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-BoldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Heavy.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Heavy.otf deleted file mode 100755 index 7d3b413..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-HeavyItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-HeavyItalic.otf deleted file mode 100755 index a03d003..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-HeavyItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Light.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Light.otf deleted file mode 100755 index 1e16968..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Light.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-LightItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-LightItalic.otf deleted file mode 100755 index 5bee181..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-LightItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Medium.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Medium.otf deleted file mode 100755 index 4982cb5..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-MediumItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-MediumItalic.otf deleted file mode 100755 index c876a0e..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-MediumItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Regular.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Regular.otf deleted file mode 100755 index 65f9ea5..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-RegularItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-RegularItalic.otf deleted file mode 100755 index af984d5..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-RegularItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-Semibold.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-Semibold.otf deleted file mode 100755 index a20e7a0..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SF-Pro-Text-SemiboldItalic.otf b/.local/share/fonts/san_francisco/SF-Pro-Text-SemiboldItalic.otf deleted file mode 100755 index 08ee24d..0000000 Binary files a/.local/share/fonts/san_francisco/SF-Pro-Text-SemiboldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Black.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Black.otf deleted file mode 100644 index 2ae24e5..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Black.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Bold.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Bold.otf deleted file mode 100644 index afeb837..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Bold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Heavy.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Heavy.otf deleted file mode 100644 index d22c06c..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Light.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Light.otf deleted file mode 100644 index ee840c4..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Light.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Medium.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Medium.otf deleted file mode 100644 index 181c07e..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Regular.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Regular.otf deleted file mode 100644 index 132080b..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Semibold.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Semibold.otf deleted file mode 100644 index 40af239..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Thin.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Thin.otf deleted file mode 100644 index 4fb2187..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Thin.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSDisplay-Ultralight.otf b/.local/share/fonts/san_francisco/SFNSDisplay-Ultralight.otf deleted file mode 100644 index 971966a..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSDisplay-Ultralight.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Bold.otf b/.local/share/fonts/san_francisco/SFNSText-Bold.otf deleted file mode 100644 index 197a59e..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Bold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldG1.otf b/.local/share/fonts/san_francisco/SFNSText-BoldG1.otf deleted file mode 100644 index d8959a4..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldG2.otf b/.local/share/fonts/san_francisco/SFNSText-BoldG2.otf deleted file mode 100644 index 50d015b..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldG3.otf b/.local/share/fonts/san_francisco/SFNSText-BoldG3.otf deleted file mode 100644 index c3afbfe..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldItalic.otf b/.local/share/fonts/san_francisco/SFNSText-BoldItalic.otf deleted file mode 100644 index dc49240..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG1.otf b/.local/share/fonts/san_francisco/SFNSText-BoldItalicG1.otf deleted file mode 100644 index c3ffb4c..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG2.otf b/.local/share/fonts/san_francisco/SFNSText-BoldItalicG2.otf deleted file mode 100644 index 60e2a2e..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG3.otf b/.local/share/fonts/san_francisco/SFNSText-BoldItalicG3.otf deleted file mode 100644 index ebef10c..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-BoldItalicG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Heavy.otf b/.local/share/fonts/san_francisco/SFNSText-Heavy.otf deleted file mode 100644 index afbae23..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-HeavyItalic.otf b/.local/share/fonts/san_francisco/SFNSText-HeavyItalic.otf deleted file mode 100644 index 56d4028..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-HeavyItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Light.otf b/.local/share/fonts/san_francisco/SFNSText-Light.otf deleted file mode 100644 index 6a6e4d1..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Light.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-LightItalic.otf b/.local/share/fonts/san_francisco/SFNSText-LightItalic.otf deleted file mode 100644 index 17d7590..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-LightItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Medium.otf b/.local/share/fonts/san_francisco/SFNSText-Medium.otf deleted file mode 100644 index 2dda908..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-MediumItalic.otf b/.local/share/fonts/san_francisco/SFNSText-MediumItalic.otf deleted file mode 100644 index ad92f9c..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-MediumItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Regular.otf b/.local/share/fonts/san_francisco/SFNSText-Regular.otf deleted file mode 100644 index a40273d..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularG1.otf b/.local/share/fonts/san_francisco/SFNSText-RegularG1.otf deleted file mode 100644 index fee72d1..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularG2.otf b/.local/share/fonts/san_francisco/SFNSText-RegularG2.otf deleted file mode 100644 index f706567..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularG3.otf b/.local/share/fonts/san_francisco/SFNSText-RegularG3.otf deleted file mode 100644 index 9e58a78..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularItalic.otf b/.local/share/fonts/san_francisco/SFNSText-RegularItalic.otf deleted file mode 100644 index 02d69fa..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG1.otf b/.local/share/fonts/san_francisco/SFNSText-RegularItalicG1.otf deleted file mode 100644 index 59d5676..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG2.otf b/.local/share/fonts/san_francisco/SFNSText-RegularItalicG2.otf deleted file mode 100644 index 6740ae1..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG3.otf b/.local/share/fonts/san_francisco/SFNSText-RegularItalicG3.otf deleted file mode 100644 index ff7fc3d..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-RegularItalicG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-Semibold.otf b/.local/share/fonts/san_francisco/SFNSText-Semibold.otf deleted file mode 100644 index e05a2f6..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFNSText-SemiboldItalic.otf b/.local/share/fonts/san_francisco/SFNSText-SemiboldItalic.otf deleted file mode 100644 index 25c0ab2..0000000 Binary files a/.local/share/fonts/san_francisco/SFNSText-SemiboldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Black.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Black.otf deleted file mode 100755 index 6551003..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Black.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Bold.ttf b/.local/share/fonts/san_francisco/SFUIDisplay-Bold.ttf deleted file mode 100755 index 4d463a2..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Bold.ttf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Heavy.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Heavy.otf deleted file mode 100755 index d214526..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Light.ttf b/.local/share/fonts/san_francisco/SFUIDisplay-Light.ttf deleted file mode 100755 index 1d356dc..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Light.ttf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Medium.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Medium.otf deleted file mode 100755 index c39628d..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Regular.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Regular.otf deleted file mode 100755 index 8316e51..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Semibold.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Semibold.otf deleted file mode 100755 index 874e00e..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Thin.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Thin.otf deleted file mode 100755 index 46f588a..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Thin.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIDisplay-Ultralight.otf b/.local/share/fonts/san_francisco/SFUIDisplay-Ultralight.otf deleted file mode 100755 index 217c461..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIDisplay-Ultralight.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Bold.otf b/.local/share/fonts/san_francisco/SFUIText-Bold.otf deleted file mode 100755 index 05fd71c..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Bold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldG1.otf b/.local/share/fonts/san_francisco/SFUIText-BoldG1.otf deleted file mode 100755 index 9936555..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldG2.otf b/.local/share/fonts/san_francisco/SFUIText-BoldG2.otf deleted file mode 100755 index bbf226f..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldG3.otf b/.local/share/fonts/san_francisco/SFUIText-BoldG3.otf deleted file mode 100755 index 37616c4..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG1.otf b/.local/share/fonts/san_francisco/SFUIText-BoldItalicG1.otf deleted file mode 100755 index 938dd03..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG2.otf b/.local/share/fonts/san_francisco/SFUIText-BoldItalicG2.otf deleted file mode 100755 index d5416f3..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG3.otf b/.local/share/fonts/san_francisco/SFUIText-BoldItalicG3.otf deleted file mode 100755 index 7f4bc9f..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-BoldItalicG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Heavy.otf b/.local/share/fonts/san_francisco/SFUIText-Heavy.otf deleted file mode 100755 index 7b4b489..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Heavy.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-HeavyItalic.otf b/.local/share/fonts/san_francisco/SFUIText-HeavyItalic.otf deleted file mode 100755 index ae01079..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-HeavyItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Italic.otf b/.local/share/fonts/san_francisco/SFUIText-Italic.otf deleted file mode 100755 index b46af5b..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Italic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-ItalicG1.otf b/.local/share/fonts/san_francisco/SFUIText-ItalicG1.otf deleted file mode 100755 index 4bfba84..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-ItalicG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-ItalicG2.otf b/.local/share/fonts/san_francisco/SFUIText-ItalicG2.otf deleted file mode 100755 index 358e92d..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-ItalicG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-ItalicG3.otf b/.local/share/fonts/san_francisco/SFUIText-ItalicG3.otf deleted file mode 100755 index 091bcbe..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-ItalicG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Light.otf b/.local/share/fonts/san_francisco/SFUIText-Light.otf deleted file mode 100755 index dd0d3c1..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Light.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-LightItalic.otf b/.local/share/fonts/san_francisco/SFUIText-LightItalic.otf deleted file mode 100755 index 1b0f52f..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-LightItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Medium.otf b/.local/share/fonts/san_francisco/SFUIText-Medium.otf deleted file mode 100755 index dbc620e..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Medium.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-MediumItalic.otf b/.local/share/fonts/san_francisco/SFUIText-MediumItalic.otf deleted file mode 100755 index e890b78..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-MediumItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Regular.otf b/.local/share/fonts/san_francisco/SFUIText-Regular.otf deleted file mode 100755 index b2aa388..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Regular.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-RegularG1.otf b/.local/share/fonts/san_francisco/SFUIText-RegularG1.otf deleted file mode 100755 index e99f719..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-RegularG1.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-RegularG2.otf b/.local/share/fonts/san_francisco/SFUIText-RegularG2.otf deleted file mode 100755 index 78fb08b..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-RegularG2.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-RegularG3.otf b/.local/share/fonts/san_francisco/SFUIText-RegularG3.otf deleted file mode 100755 index fb40846..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-RegularG3.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-Semibold.otf b/.local/share/fonts/san_francisco/SFUIText-Semibold.otf deleted file mode 100755 index 893bedc..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-Semibold.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/SFUIText-SemiboldItalic.otf b/.local/share/fonts/san_francisco/SFUIText-SemiboldItalic.otf deleted file mode 100755 index 4fa914e..0000000 Binary files a/.local/share/fonts/san_francisco/SFUIText-SemiboldItalic.otf and /dev/null differ diff --git a/.local/share/fonts/san_francisco/san_francisco-webfont.woff b/.local/share/fonts/san_francisco/san_francisco-webfont.woff deleted file mode 100755 index 373a761..0000000 Binary files a/.local/share/fonts/san_francisco/san_francisco-webfont.woff and /dev/null differ diff --git a/.local/share/fonts/san_francisco/san_francisco-webfont.woff2 b/.local/share/fonts/san_francisco/san_francisco-webfont.woff2 deleted file mode 100755 index 4a9ec31..0000000 Binary files a/.local/share/fonts/san_francisco/san_francisco-webfont.woff2 and /dev/null differ diff --git a/.local/share/fonts/terminess/LICENSE.txt b/.local/share/fonts/terminess/LICENSE.txt deleted file mode 100644 index 8cd25e3..0000000 --- a/.local/share/fonts/terminess/LICENSE.txt +++ /dev/null @@ -1,97 +0,0 @@ -Copyright (c) 2010 Dimitar Toshkov Zhekov, -with Reserved Font Name "Terminus Font". - -Copyright (c) 2011-2021 Tilman Blumenbach, -with Reserved Font Name "Terminus (TTF)". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/.local/share/fonts/terminess/README.md b/.local/share/fonts/terminess/README.md deleted file mode 100644 index 83a31eb..0000000 --- a/.local/share/fonts/terminess/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# Nerd Fonts - -This is an archived font from the Nerd Fonts release v3.1.1. - -For more information see: -* https://github.com/ryanoasis/nerd-fonts/ -* https://github.com/ryanoasis/nerd-fonts/releases/latest/ - -# Terminus - -**Terminus TTF** is a TrueType version of Terminus Font, a fixed-width bitmap font optimized for long work with computers. - -https://terminus-font.sourceforge.net/ - -For more information have a look at the upstream website: https://files.ax86.net/terminus-ttf/ - -Version: 4.49.2 - -## Why `Terminess` and not `Terminus`? - -What's in a name? The reason for the name change is to comply with the SIL Open Font License (OFL), in particular the [Reserved Font Name mechanism][SIL-RFN] - -Some fonts have parts of their name "reserved" per the [Reserved Font Name mechanism][SIL-RFN]: -> No Modified Version of the Font Software may use the Reserved Font -> Name(s) unless explicit written permission is granted by the corresponding -> Copyright Holder. This restriction only applies to the primary font name as -> presented to the users. - -- The main goals seem to be to: `Avoid collisions`, `Protect authors`, `Minimize support`, and `Encourage derivatives` - -See the [Reserved Font Name section][SIL-RFN] for additional information - -## Which font? - -### TL;DR - -* Pick your font family: - * If you are limited to monospaced fonts (because of your terminal, etc) then pick a font with `Nerd Font Mono` (or `NFM`). - * If you want to have bigger icons (usually around 1.5 normal letters wide) pick a font without `Mono` i.e. `Nerd Font` (or `NF`). Most terminals support this, but ymmv. - * If you work in a proportional context (GUI elements or edit a presentation etc) pick a font with `Nerd Font Propo` (or `NFP`). - -### Ligatures - -Ligatures are generally preserved in the patched fonts. -Nerd Fonts `v2.0.0` had no ligatures in the `Nerd Font Mono` fonts, this has been dropped with `v2.1.0`. -If you have a ligature-aware terminal and don't want ligatures you can (usually) disable them in the terminal settings. - -### Explanation - -Once you narrow down your font choice of family (`Droid Sans`, `Inconsolata`, etc) and style (`bold`, `italic`, etc) you have 2 main choices: - -#### `Option 1: Download already patched font` - - * For a stable version download a font package from the [release page](https://github.com/ryanoasis/nerd-fonts/releases) - * Or download the development version from the folders here - -#### `Option 2: Patch your own font` - - * Patch your own variations with the various options provided by the font patcher (i.e. not include all symbols for smaller font size) - -For more information see: [The FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting#which-font) - -[SIL-RFN]:http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web_fonts_and_RFNs#14cbfd4a - diff --git a/.local/share/fonts/terminess/TerminessNerdFont-Bold.ttf b/.local/share/fonts/terminess/TerminessNerdFont-Bold.ttf deleted file mode 100644 index cc8b9b7..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFont-Bold.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFont-BoldItalic.ttf b/.local/share/fonts/terminess/TerminessNerdFont-BoldItalic.ttf deleted file mode 100644 index f60b801..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFont-BoldItalic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFont-Italic.ttf b/.local/share/fonts/terminess/TerminessNerdFont-Italic.ttf deleted file mode 100644 index 8b60838..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFont-Italic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFont-Regular.ttf b/.local/share/fonts/terminess/TerminessNerdFont-Regular.ttf deleted file mode 100644 index e73cbd8..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFont-Regular.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontMono-Bold.ttf b/.local/share/fonts/terminess/TerminessNerdFontMono-Bold.ttf deleted file mode 100644 index c3e5513..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontMono-Bold.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontMono-BoldItalic.ttf b/.local/share/fonts/terminess/TerminessNerdFontMono-BoldItalic.ttf deleted file mode 100644 index 5e3ffda..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontMono-BoldItalic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontMono-Italic.ttf b/.local/share/fonts/terminess/TerminessNerdFontMono-Italic.ttf deleted file mode 100644 index bc9e2ed..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontMono-Italic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontMono-Regular.ttf b/.local/share/fonts/terminess/TerminessNerdFontMono-Regular.ttf deleted file mode 100644 index 7d56730..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontMono-Regular.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontPropo-Bold.ttf b/.local/share/fonts/terminess/TerminessNerdFontPropo-Bold.ttf deleted file mode 100644 index 47295c5..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontPropo-Bold.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontPropo-BoldItalic.ttf b/.local/share/fonts/terminess/TerminessNerdFontPropo-BoldItalic.ttf deleted file mode 100644 index 70a16ee..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontPropo-BoldItalic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontPropo-Italic.ttf b/.local/share/fonts/terminess/TerminessNerdFontPropo-Italic.ttf deleted file mode 100644 index 724ce45..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontPropo-Italic.ttf and /dev/null differ diff --git a/.local/share/fonts/terminess/TerminessNerdFontPropo-Regular.ttf b/.local/share/fonts/terminess/TerminessNerdFontPropo-Regular.ttf deleted file mode 100644 index 58c001e..0000000 Binary files a/.local/share/fonts/terminess/TerminessNerdFontPropo-Regular.ttf and /dev/null differ